CSS/HTML annoyance.

Soldato
Joined
23 Dec 2010
Posts
3,483
Hey guys,

I'm working on a website for my college project and after making my CSS/HTML navigation bar I've noticed that it's put some sort of bullet points inbetween the links.

Pictures below.

yZBS5.jpg
 
Source?

If you've used a list to create this, you probably just need to add something like this:

Code:
ul {
  list-style: none;
}

And obviously only apply it to the relevant section of the HTML.
 
I did a BTEC, it doesn't mean that I should submit crap like that code. My teacher would have slammed me if I had none adhered to at least some standards. Using that as an excuse just shows that maybe you shouldn't be going down the code route.

The majority of my class have done their websites in Dreamweaver using tables.

Christ, you guys are touchy.
 
This proves that you have missed the first lesson in Web.

Yup. Just because it works in one browser at one time doesn't necessarily it will work in another at another time. It's a good idea to familiarise yourself with the various standards and practises to insure best cross-browser compatibility and standards adherence.

There's some good stuff here: http://www.webmonkey.com/2010/02/web_standards_for_beginners/ although it's a little old now.
 
Last edited:
How much would it take for me to get to work across all platforms?

I am aware that different web browsers are all different in the way they view webpages.
 
Back
Top Bottom