I don’t know about you… but on the example site the title is on the right not left.
However, first you find its style, following this guide:
http://codex.wordpress.org/Finding_Your_CSS_Styles
then you edit the style.css file
(hint: the title in every normal theme is in between h1 tags)
Yes… I need to the title on the right.
man your header is all jacked in ie. i know ie sucks, but that’s all i have at work.
yikes that looks terrible…
Can anyone help me on this?
How do i move the title of my blog over to the Right hand side of my header?
I want may title to appear like the one in this site, http://thepolettos.com/
Here is my site, http:\\www.thebates.us
I was able to get it to move way over by editing style.css, i changed the following code, from center to right but that takes it way to far over…
h1 {
font-size: 4em;
text-align: Center;
}
Please help…
After changing it to “right” (No Capitals 🙂
add this line:
padding-right: 25px;
so it will be
h1 {
font-size: 4em;
text-align: right;
padding-right: 25px;
}
and play with that padding value until it looks as you want.
thank you very much…
this is probably a silly question.. but how do you move the the line below the blog title? what is that called?
Also is there a way to move the title up just a little?
For your first qustion: you obviously didn’t read the resource/guide I provided in my first reply in this thread. The answer is there.
Again, the guide should be helpful – plus, find all the references to it (h1, header etc.) in your stylesheet and play with the margin/padding values.