Sorry to keep posting but I have a few more questions: 1. How do I update the Search Results page as follows: a) Use the Fullwidth page template instead of the Default template?b) Enable/disable displaying the meta attributes under the results titles (e.g., By, the date, Comments off) -- see pic. 2. How do you enable/disable breadcrumbs? Mine are turned off on all pages except the Search Results page for some reason? Not sure how to enable them again, and why the Search Results page is different from the rest of the site? 3. I'm using this CSS to format the copyright notice below the footer: Code: .footer_copy { background:white; /* dca800 */ width: 986px ! important; margin-left: -13px; } .footer_bottom .footer_copy .copyright p { color: #666666; text-align: center; font-size: 13px; font-weight:bold; padding-top: 12px; padding-right: 5px; } My question is how to you extend the glow edge that is present in the section above the footer to the copyright box below the footer (see pic)? 4. How to I adjust the padding above and below the footer content (see pic)? Thanks for your help!
Hello, 1. a) Go to the search.php file present in the theme directory and follow the instruction shown in link given below. http://screencast.com/t/nxcxnopp2 b) Paste the code given below in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .search .post_meta { display: none; } This will remove the meta tag from the search page. 2. Go to the template-fullwidth.php file in your theme directory and paste the code given below in that file. Code: <?php if (function_exists('inkthemes_breadcrumbs')) inkthemes_breadcrumbs(); ?> See the link for the reference. http://screencast.com/t/cPkP38XFRs7 Similarly, follow the same instruction in the template-contact.php , blog.php and template-contact.php file. 3. Could you please explain this issue more clearly and also share your website link. 4. Paste the code given below in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .footer-content .footer_wrap { padding-top: 15px; } You can adjust the value of padding-top as per your requirement.