Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7528263
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T04:19:50+00:00 2026-05-30T04:19:50+00:00

So I have the HTML and CSS code: <!DOCTYPE html> <html> <head> <title>Solomon Wise</title>

  • 0

So I have the HTML and CSS code:

<!DOCTYPE html>
<html>
<head>
    <title>Solomon Wise</title>
        <style = text/css>
            body {
                background-color: #F5F5DC;
            }
            .body {
                font-family: Futura, Geneva, sans-serif;
                width: 300px;
                border-style: solid;
                border-width: 1px;
                border-radius: 10px;
                padding-left: 10px;
                padding-right: 10px;
                position: fixed;
                top: 50px;
                left: 50px;
                background-color: White;
            }
            .javascript {
                font-family: Futura, Geneva, sans-serif;
                width: 300px;
                border-style: solid;
                border-width: 1px;
                border-radius: 10px;
                padding-left: 10px;
                padding-right: 10px;
                position: fixed;
                top: 50px;
                left: 500px;
                background-color: White;
            }
            .HTMLCSS {
                font-family: Futura, Geneva, sans-serif;
                width: 300px;
                border-style: solid;
                border-width: 1px;
                border-radius: 10px;
                padding-left: 10px;
                padding-right: 10px;
                position: fixed;
                background-color: White;
                top: 300px;
                left: 500px;
            }
            .Python {
                font-family: Futura, Geneva, sans-serif;
                width: 300px;
                border-style: solid;
                border-width: 1px;
                border-radius: 10px;
                padding-left: 10px;
                padding-right: 10px;
                position: fixed;
                background-color: White;
                top: 500px;
                left: 500px;
            }
            p {
                color: #747E80;
            }
            a:link {
                color:DarkBlue;
            }
            a:visited {
                color:Black;
            }
            a:hover {
                color:DarkCyan;
                }
        </style>
        <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
</head>
<body>
    <div class = 'body'>
        <h1>Solomon Wise</h1>
        <nav>
            <p class = 'one'>Hi, I'm Solomon, I'm 13 years old and I live in NYC. I love music, coding, sports, and minimalism.</p>
            <a href = "http://pastebin.com/u/slmnwise">Pastebin</a></br>
            <a href = "http://turntablestars.com/profile/Bill">TTStars Profile</a>
        </nav>
        <a href="https://twitter.com/slmnwise" class="twitter-follow-button" data-show-count="false"><img src = 'http://aux.iconpedia.net/uploads/1161475967.png'></a>
        <a href="http://www.facebook.com/SolomonIsGreat.net"><img src = "http://whatnowatlanta.com/wp-content/themes/canvas/images/ico-social-facebook.png"</a>
        <a href="http://www.goodreads.com/user/show/7658526-solomon-wise"><img src = "http://4.bp.blogspot.com/-NtFTy_OM9oU/TsaFQylMW-I/AAAAAAAAE2s/XwdLy3eiBbk/s1600/goodreads-button-much-rounder-corners-600x600.jpg" height = "32" width = "32"></a>
        <a href="http://stackoverflow.com/users/1207787/solomon-wise"><img src = "http://alindeman.github.com/images/stackoverflow_32.png"></a></br>
    </div>
    <div class = 'javascript'>
        <h3>Javascript</h3>
        <p class = 'two'>I can make small web applications in Javascript, along with adding dynamic features and functionality to a website in Javascript, such as adding a twitter mashup or an RSS feed.</p>
    </div>
    <div class = 'HTMLCSS'>
        <h3>HTML and CSS</h3>
        <p class = 'three'>I can design snazzy looking websites in HTML and CSS, just contact me to request one and we can work something out!</p>
    </div>
    <div class = 'Python'>
        <h3>Python</h3>
        <p class = 'four'>I can write applications and small games in Python, I have a good bit of experience in the language and work with it a lot</p>
    </div>
    </div>
</body>
</html>

and the website looks perfectly fine, except for one thing. The bottom of the Python box is cut off, and I can’t scroll down to view the rest of the page! How do i fix this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T04:19:52+00:00Added an answer on May 30, 2026 at 4:19 am

    change position: fixed; to position: absolute; on all those “boxes”…

    position fixed means the element doesn’t interact with the viewport the same way other ones do so they don’t affect the scrolling of the page…

    hope this helps -ck

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following code <html> <head> <title>Test</title> <style type=text/css> <!-- body,td,th { color:
I have this code <html> <head> <style type=text/css> .frame {width: 50em; border: 1px solid
I have this code: <!DOCTYPE html> <html> <head> <title>@ViewBag.Title</title> <link href=@Url.Content(~/Content/Site.css) rel=stylesheet type=text/css />
I have html and css as below - .title { display: block; background-color: red;
I have this html and css code: <!DOCTYPE html> <html lang=en> <head> <meta charset=utf-8
I'll jump to an example. <!DOCTYPE html> <head> <title>Transposing div using CSS</title> <style> div#wrapper
This is the code I have: <!DOCTYPE html> <html> <head> <title><%= title %></title> <%=
I have the following css code .container { width:800px; background-color:yellow; margin:auto; display:table; } .cell
I have a simple PhoneGap application as fallows: <!DOCTYPE HTML> <html> <head> <title>PhoneGap powered
I have the following HTML/CSS code in which a line of text is shown

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.