Center header title in Twenty Ten
-
Hi people!
How can i center the header title “Até aos cem” in my blog?
I do not find where in css.
My blog is http://ateaoscem.wordpress.com and i upgrated Custom Design.
Thank you!
The blog I need help with is: (visible only to logged in users)
-
-
There is one staff member that helps with CSS issues and she probably won’t be around until sometime mid day Tuesday.
-
-
Hello ateaoscem,
try this : in the following code of your CSS, replace left by center
#site-title {
font-family: "Helvetica Neue", Arial, Helvetica, "Nimbus Sans L", sans-serif;
font-size: 36px;
letter-spacing: -0.03em;
line-height: 42px;
text-align: left;
}
#site-title a {
color: #000;
font-weight: bold;
text-decoration: none;
}
#site-description {
color: #000;
font-family: "Helvetica Neue", Arial, Helvetica, "Nimbus Sans L", sans-serif;
font-size: 18px;
margin: 0 0 9px 0;
text-align: left;
}How did I found ?
In the HTML code of the page launch a search for “Até aos cem” and you will see it is encapsulated in a h1 tag with the id site-title : <h1 id=”site-title”>
Then you only have to look for occurence of #site-title in the CSS and guess by yourself that it is happening in the align property … -
-
- The topic ‘Center header title in Twenty Ten’ is closed to new replies.