Reputation: 11
I am using the Twenty Fourteen Theme. I would like to ask how do I customize twenty fourteen theme?
I would like to change the whole twenty fourteen from black to white. i.e. the header menu, footer and left sidebar I want it to be in white instead of black.
I would also like the search bar to be of a different color.
I also want my homepage to show "Read More" link instead of full posts. Where do I start?
I would like to remove categories from all my pages.
After doing my research online, I see that I need a child theme, which I am very interested to learn. But I am not too sure if I should proceed this way?
Upvotes: 1
Views: 1905
Reputation: 11
Creating a child theme is vital, it keeps your settings even after updating a theme. This is a good template for a twenty fourteen child theme. After creating your child theme, add these codes to your style.css in your child theme folder.
To change background color of left sidebar,
#secondary {
background: #dcadc5;
}
To change footer background color:
.site-footer{
background: #00ff42; // change background color
}
To remove categories from posts:
.tag-links { display: none; }
Reference: Modify Twenty Fourteen Theme WordPress . This should also answer some of your other questions.
Upvotes: 1