How to move blog title in the middle of the screen?

Fahad Uddin picture Fahad Uddin · Nov 29, 2010 · Viewed 25.4k times · Source

I am very new to blogging. My blog has its title description at the top-left but I want it to be in the middle of the screen and the description of the blog beneath the image.

I tried the following code but the title is still at the top-left corner:

<title style="text-align:center"><data:blog.pageTitle/></title>

Thanks in advance.

Answer

Stephan Muller picture Stephan Muller · Nov 29, 2010

The <title> element isn't used for the title displayed on your website, only for the title in the browser's top bar.

You'll have to edit the CSS file and set #titlewrapper { text-align: center }

Alternatively you can add style="text-align: center" in the <div id='titlewrapper'> in your HTML.