Log in

View Full Version : bottom text



dguilloryjr
05-12-2008, 09:45 PM
i am working on a design at the url

http://customfit.extechla.com

at the top my text is in front of my image! i need the text to be under the image! i have the cell to 55 in height! and i want the text at the bottom of the div tag!

any ideas?

Medyman
05-12-2008, 10:37 PM
Add some padding :D


#news
{
list-style: none;
margin-right: 15px;
background-image: url(images/news.png);
background-repeat: no-repeat;
height: 55px;
background-position: center top;
vertical-align: bottom;
padding-top:35px;
}

dguilloryjr
05-13-2008, 03:41 PM
trying to understand why in firefox i can see all 6 buttons but in IE i only see 5 at the top!

http://customfit.extechla.com

How can i fix this?

rangana
05-14-2008, 12:38 AM
It's showing, apparently, behind index_r2_c1.gif image ;)

...The fix is to set your list's width:


#nav-menu li
{
float: left;
margin-top: 25px;
width:52px;
}


...You will be facing on a new problem, and that will be text formatting, but then, I know you'll be able to action it properly :)

See if it helps :)