Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

robbieporter85

macrumors newbie
Original poster
Dec 22, 2010
3
0
Hello!

I just finished and uploaded this website: http://www.gillianmurray.com/

I made it with dreamweaver on my mac & it works fine on Firefox and Safari but when viewed on Internet Explorer the 'About Me' page is all over the place, and the <p> tags look different...

Does anyone know how I can fix this?

Is there a CSS reset I could use?

thanks,
robbie
 
Well it's no wonder IE is having trouble with it. You're using nonexistent tags such as <p4> and <p5>. That can only be done in HTML5, and you're using an XHTML 1.0 doctype.

Try using classes instead.
PHP:
<p class="p2">...</p>

p.p2{
letter-spacing:1px;
font-family:"Times New Roman", Times, serif;
border:0px;
margin:0px;
padding-right:0px;
padding-left:0px;
padding-top:10px;
padding-bottom:5px;
font-size:10px;
color:#000000;
}
In the future, validating your code can be a big help in troubleshooting.
 
oh right, i didn't know that... still learning!

i'm going to rename all those <p> tags hopefully then it will be working nicely! thank you!
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.