mqcarpenter
02-24-2004, 09:18 PM
Is there a quality way to add whitespace to a page, instead of adding a ton of lame <BR> or <P></P>s?
A for instance is with a "FAQ" list, like this:
www.sarmacollections.com/debt/index.html
At the bottom of the list, you can not frame targets well without added whitespace.
TIA
ReadMe.txt
02-24-2004, 09:24 PM
i dont see any spacing problems with that, although your markup isn't brilliant. unclosed tags and id is supposed to be a unique identifier, you should be using class instead of id for indented thingy.
also - are you away that all the paragraphs have the same hover effect as the links on the ordered list? (another note - whys is your ol being made to behave like a ul?)
mqcarpenter
02-24-2004, 09:36 PM
Why don't you answer the question, please, instead of critiquing?
also - are you away that all the paragraphs have the same hover effect as the links on the ordered list?
Yes, that is how the CSS is set up.
(another note - whys is your ol being made to behave like a ul?)
If you looked at the CSS you would know. I wanted that list on the main content to be the same as in the sidebar, but with an indention.
id is supposed to be a unique identifier, you should be using class instead of id for indented thingy.
Don't worry about it.
:)
rmedek
02-24-2004, 09:40 PM
Use your CSS... for white space between lines, use "line-height," for white space between sections, wrap your sections in appropriately labeled <div>s (or <p>) and use "margin" or "padding."
-Rich
mqcarpenter
02-24-2004, 09:44 PM
Thanks rmedek. That is what I needed.