Ask your WordPress questions! Pay money and get answers fast! Comodo Trusted Site Seal
Official PayPal Seal

Move blog header to the right WordPress

Hello,

I am trying to move my blog header to the right, in order to align it with my post tittles...
http://doronbaron.co.il/

Can anyone help?

Cheers,
Gal

Answers (4)

2011-07-04

Jurre Hanema answers:

Since your post titles are centered, I assume you want your site-title and site-description also to be centered with respect to the content area?

In that case, simply add the following CSS rule:


#site-title,
#site-description {
margin-left: 280px;
}

2011-07-04

Nilesh shiragave answers:

You want to align the blog headers with the post titles right?

now blog title and descriptions is centered on your website.

if you want to move blog title and description to the right then open style.css from your current active theme and add following lines of code at the bottom


#site-title, #site-description {
padding-left: 90px !important;
}

2011-07-04

Just Me answers:

#site-title, #site-description {
font-family: 'Lobster',arial,"Times New Roman",Times,serif;
font-weight: normal;
text-align: center;
}


at line 84 of style.css should be changed set text-align to right or left.
Remove the text-align setting of the next one at line 105

#site-description {
display: block;
font-size: 2.3em;
margin: 0 0 40px;
text-align: center;
}

2011-07-04

Peter Michael answers:

You could give the #site-title & #site-description a width of 680 pixels and float them to the right. This will center the header title & description just like the post titles below. See your style.css at line 105. This would make the changes:

#site-title, #site-description {
font-family: 'Lobster',arial,"Times New Roman",Times,serif;
font-weight: normal;
text-align: center;
width: 680px;
float: right;
clear: both;
}


HTH


Gal Zohar comments:

Brilliant did the job! Tx


Gal Zohar comments:

But just noticed now it also move the menu line up
http://doronbaron.co.il/

Can you help?