Category: Adsense Ready, Magazine Style, NewWPThemes
Music Gate Wordpress Theme is a free to download, great wordpress theme. If you have any problems about Music Gate Wordpress Theme, please report it. Theme published in Adsense Ready, Magazine Style, NewWPThemes theme categories.
Hi,
This is a good theme. I am changing my new blog to this theme. If you see GoHealthyArticles.com, I want the post to show only 5 lines with a small “Read More” Tab after that. But now, it is showing full article and “Read More” in the end. Can you please help.
Thanks. Rajesh
- open index.php and find: the_content
- change it to: the_excerpt
then it will show the first 45 characters of the post. more details: http://codex.wordpress.org/Function_Reference/the_excerpt
Thank you. The background of header is blank. How can I have a color over there. I see some code in the header.php Can this be removed, is it safe to let it be there?
Please also let me know why I can not see thumbnails on the main page.
open style.css and find:
#header {
height: 108px;
padding-top:40px;
}
replace it with this:
#header {
height: 108px;
padding-top:40px;
background:#000000;
}
000000 means black color. you can change it. you can use this website to find the color code: http://html-color-codes.info/
—————-
you think that there are thumbnails in demo but they are not thumbnails. they are just images in posts. theme does not have a automatic thumbnail feature.
if you use the_excerpt function instead of the_content, you can not see the images in posts on homepage, too.
Thanks. I have two questions.
I want the Heading H1 size to be 16 px, as current one I find is much larger. Is it possible to change font size for H1 and H2.
I have 10 categories which are displayed in the sidebar. But on the top, it shows only 6 and that too alphabetically. Can I have all 10 on top also. However, If the limit is 6 only, then can I choose which categories to be shown rather the alphabetically.
open css/screen.css and find h1. i see that size is 3em now(font-size:3em;). change it to font-size:16px;
also you can change font size for h2, h3, h4 like this.
menu:
- open header.php,
- find &exclude=1 and delete it.
- open style.css and add this at the bottom:
#navcontainer ul li a{
font-size:11px;
padding-left:2px;
padding-right:2px;
}