Forum Moderators: not2easy
which would correlate nicely with h1,h2,h3
can i just do a replace in the css and html to
.largetext > h1
.midtext > h2
.smalltext > h3
or do header tags get setup differently in css? I saw another site's css and their header tags didn't start with a dot (whats the difference?!)
thanks
h1 means it's important, h2 almost as important, etc. That is meaningful to a browser, to a search engine, to a mobile browsing device. It's best to use semantic markup, and then style it to fit the user.
As far as CSS, all tags (p, hi, li, ect) don't have dots in front. All classes have dots, and all id's have #. It's easy. Tutorial abound on the subject. I recommend the maxdesign selectTutorial. Good luck.