Forum Moderators: not2easy
an my website www.kristelverbeke.be
needs css they said
what is the best way to start with it, and what should i do
i want all my <h1> <h2> ... the same way but diffrent for every paragragh
en for titel and so
pls help me with is
and if you find other problems to my site please tell me
i know my intro needs a pre-loader, how can i add thet
greetz
the chief
well.. from what I understand, home page links aren't allowed here and general requests for site reviews aren't either. - so it's only a very short matter of time before somebody either removes your post or edits your link out.
your site needs some help in my opinion.. but I'm not sure you'll be able to do it most effectively using FrontPage.. which it looks like you're using right now.
1) consider losing the frames
2) the banner graphic quality is low, consider using a graphic editor like paintShopPro or another cheap/free similar product. using higher quality images to start with will help too
3) a basic style sheet will go a long way on your site.. simply build a file in Notepad (not in Frontpage) and save it as filename.css - define default styles like <p> and <a>, <h1>, <h2>, <h3> etc - choose a nice font.
4) take an online tutorial or buy a book on CSS and/or html or xhtml programming so you can feel more comfortable in the environment. Zeldman's Designing with Web Standards is an excellent book - but there are many on-line resourses - go to google and type CSS beginning tutorial. htmldog.com may be of help to you as well.
if you really want your <h2> to be a different colour for each paragraph, you can define different classes of <h2> in your style sheet like this
<style>
h2 {color: #000; background-color: transparent; font-family: Arial, Helvetica, sans-serif; font-size:14px;}
h2.firstcolour{color:#ff0000;}
h2.secondcolour{color:#00ff00;}
</style>
and then in your content
<h2 class="firstcolour"> this is my first header</h2>
<p> yadda yadda yadda</p>
<h2 class="secondcolour"> This is my second header</h2>
etc..
hopefully that has made sense to you, if you are a hard-core front-page user.. you may be confused now :-)
cheers
Lana