Search code examples
htmlcssblogsbloggertitle

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


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.


Solution

  • 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.