HTML help.

WarriorH

New Member
Messages
55
Reaction score
0
Points
0
Hi, I am editing a design for this company that my friend owns. (http://www.falcondesignconsultants.com


Well, lets say you go to this page:
(http://www.falcondesignconsultants.com/projects/ga/projectga.html)


Do you see how the scroll bars show up?

Well, they don't want content scroll bars, they want the text to run down the page and just have a big scroll bar on the side of the page like normal sites.



I know, your probably saying- "Why not just take them off and let the page automatically scroll?"


It's easier said than done.. they have made the entire layout a big background file. How can I make the text run down the page instead of cutting it off with a div at a certain spot like I have already done.
 
Last edited:

VPmase

New Member
Messages
914
Reaction score
0
Points
0
In the style sheet you are going to have to change your DIV.content attributes to these:
Code:
DIV.content {
	color: #000000;
        margin-top:5px;
	width:650px;
	padding:10px;
}

But you are going to have to change the layout accordingly.
 
Last edited:
Top