Topic: stupid css styles!!! AGGGGHHH! (Page 1 of 1) |
|
---|---|
Bipolar (III) Inmate From: Lost Angeles Kalifornia, via Hawaii.... |
posted 05-18-2006 16:45
ok, I know this must be major basic sheeet here but Im tarding out and cant figure out what Im doing wrong. I got my site design all good and everything, and it seems to work fine in Mozilla, but when I just checked it in explorer, my styles don't take effect on certain pages. |
Maniac (V) Inmate From: there...no..there..... |
posted 05-18-2006 17:30
well, the only thing that I can see at a glance from IE that isn't right would be the text under the guy's picture. Is that right? code: <td width="262" height="354" valign="top" background="images/body_space.jpg" class="_bodycontent"><div align="center"><img src="images/cover150_150.jpg" alt="Cover" width="150" height="150" border="0" /><br /> "Feels Like The First Time" <br />
code: .bodycontent{ font:normal 10px Verdana; color:#fefefe; }
code: body{ font:normal 10px Verdana; color:#fefefe; }
|
Bipolar (III) Inmate From: Lost Angeles Kalifornia, via Hawaii.... |
posted 05-18-2006 17:34
Thanks! The main page that was pointed out to me was the about page.... the text is black on the dk. grey and it extends a bit over the edges.... do you see a difference in IE and FF?? |
Maniac (V) Inmate From: there...no..there..... |
posted 05-18-2006 20:02
yep, if you fix it the way that I have above, you should be good. However, you have this : code: <td background="images/body_space_wide.jpg" class="bodycontent"><span class="bodycontentTITLE">ABOUT PITO</span><br />
code: .bodycontent{ /*font stuff and whatever goes here for the entire td tage*/ font: normal 10px Verdana; color:#fefefe; } .bodycontent p{ /* this just puts a little indent on the first line of the paragraph */ text-indent: 20px; } /* no reason to rewrite the wheel when we can use a perfectly good HTML tag ;)*/ .bodycontent h3{ font:bold 10px Verdana, Arial, Helvetica, sans-serif; /* I like to combine as much as I can */ color: #9AABD9; text-align: left; padding-right: 7px; padding-left: 0px; }
code: <td background="images/body_space_wide.jpg" class="bodycontent"><h3>ABOUT PITO</h3><br />
|