
07-03-2009, 04:15 PM
|
 |
Regular Babbler
|
|
Join Date: Dec 2008
Location: SO,IL
Posts: 86
|
|
Quote:
Originally Posted by sgtmac66
I ran into a CSS probelm last night on a Horiz. Nav Bar, which I have in my header. I found a solution, but don't know if it is kosher-meaning am not sure if I have used the proper tag or not.
I have four text links in a horizontal line on my header logo. When I installed them they showed up at the top left of the header instead of the bottom left where I wanted them. I tried to align them to the bottom with text align and positioning tags, but none worked...
The only thing that worked was to set margin-top: 90px, which forced the text from the top left to the bottom left.
Is this a proper way to do this or?
|
You could also try this:
INDEX:
<div id="Header">
<div class="Liner">
***NAVBAR***
</div>
</div>
STYLE:
#Header .Liner {
padding: 70px 50px;
}
__________________
X-Factor
|