I’m not exactly sure what you’re asking here – but Im guessing this article will help clear things up:
http://codex.wordpress.org/Theme_Development
I am currently working on a project and want to make sure i’m styling it right for example I have a post snippet page (do i have to style the a tag p tag and the page all different like below?
.post_snippet a {
font-family:Georgia, “Times New Roman”, Times, serif;
color:#8e460c;
font-size:24px;
text-decoration:none;
font-style:normal;
}
.post_snippet p {
font-family:arial;
color:#8e460c;
font-size:12px;
text-decoration:none;
font-style:normal;
}
.post_snippet {
margin:0px 0px;
padding:0px;
width:560px;
height:738px;
margin-left:20px;
background-image:url(mainbg.png);
background-position:center;
There’s no particular right way to do it…
There’s good ways and bad ways i suppose…
Google CSS guides, CSS tutorials, etc….
Lots of tips and tricks to be had, but if you’re looking for some here, well there’s too many to mention…
If you want to ask something specific, shoot, i’m all ears (or is that eyes, since i’m reading)…
well I ran into a issue now. I have created a custom footer but, for some reason it’s not moving to the bottom of my posts or static pages. There seems to be a gap there. I’m not sure what I am doing wrong.
.static_page {
background-color:#e5d6c1;
width:560px;
margin-left:20px;
}
.post_snippet {
background-color:#e5d6c1;
width:560px;
margin-left:20px;
margin-bottom:0px;
}
.single_post {
width:560px;
margin-left:10px;
background-color:#e5d6c1;
margin-left:20px;
}
#footer {
background-image:url(footer.png);
height:200px;
width:556px;
position: relative;
}