Tag Archives: Link Rel

How do you get an unordered list to line up in xhtml when using an external style sheet?

If I correctly interpret your question to mean "line up horizontally"… save this as horizList.css – – – – ul.linedUp { /* optional to make it only thing on "line" */ clear: both; /* no bullets – no vertical "stacking" */ list-style: none outside; } ul.linedUp li { /* optional border to show where the … Continue reading

How do I hide a peice of html code from internet explorer so only mozilla firefox will read the code?

How do I hide a peice of html code from internet explorer so only mozilla firefox will read the code? Purple Moogle is right, but he/she has written the wrong codes down. Instead of: <![if !IE]> <link rel="stylesheet" type="text/css" href="css/not-ie.css" /> <![endif]> It should be: <!–![if !IE]> <link rel="stylesheet" type="text/css" href="css/not-ie.css" /> <![endif]–> addthis_url = … Continue reading