go to Settings | Reading and you can set everything under the Front Page displays. If you need special build homepage then you will need to write some coding which will be hard for a non programmer.
Hi Gadgets,
Thanks for the post, I had 2 home pages, one a blog and the other a page. I wanted to delete the blog home page and your information worked. Thanks again.
Hi Again, I have another query.
I’m using Twenty Eleven theme and I want to change the font on the site title header. I can change the site title in general settings, but that is all I can do.
The font part you will need to look into the style.css file under Twenty Eleven theme and change the font manually if you know css a little bit 🙂
Alright, just manage to take a look @ the theme’s css file, here is what you need to do
open the style.css file, look for #site-title and #site-description part under this line
/* =Header
———————————————– */
then enter the ‘font-family: Times, serif, fantasy;’ line into both
#site-title and #site-description part as shows below then save the file. Don’t touch any other line, just insert the one line code into below two parts.
#site-title {
margin-right: 270px;
padding: 3.65625em 0 0;
font-family: Times, serif, fantasy;
}
#site-description {
color: #7a7a7a;
font-size: 14px;
margin: 0 270px 3.65625em 0;
font-family: Times, serif, fantasy;
}
if you don’t like the font style, you can use other font but you need to know some css font-family property in order to do it. Hope that help.
Make sure you don’t delete anything from above mentioned parts.
Hi Gadgets,
Thank you very much, I don’t know css at all I’m new to all this.
I’m sure I can google css codes. Thanks for your help.