I have been trying to control several things using the theme options and a child theme and custom.css, but the performance is irregular.
Attempted changes:
1. Do not display breadcrumbs or previous page link.
2. Do not display page title.
3. Keep headers upper & lower, not all uppercase.
4. Make headers color #006600
5. Make links color #006633 (while displayed, not only on hover or click)
Additional desired changes:
6. Make top navigation area wider, using the area normally used for logo.
7. Control font and background colors of footer widget areas.
8. Control font and background colors of page footer.
9. Specify unique sidebar content for different pages.
10. Display left-aligned thumbnail images in blog post list page.
11. Control (or hide) meta content shown in bar below post featured images.
12. Show login/logout link in top bar (where search/logout appear).
I have made changes in the theme options, such as changing the main font color, but have not succeeded in getting the changes above implemented with custom CSS.
The child-theme folder contains only two files:
/themes/idstore-child/style.css with contents:
/*
Theme Name: IDStore Child
Theme URI: http://af1.1c1.myftpupload.com
Description: IDStore Child Theme
Template: idstore
Version: 1.0.0
Author: IDStore
Author URI: http://af1.1c1.myftpupload.com
License: GNU General Public License
License URI: license.txt
*/
@import url(“../idstore
/style.css”);
/* =Start From Here
————————————————————– */
===================END OF FILE CONTENTS================================
/themes/idstore-child/custom.css with contents:
/* ————————————————– */
/* Breadcrumbs
/* ————————————————– */
#breadcrumb {display:none;}
.back-to {display: none;}
/* ————————————————– */
/* Page Title
/* ————————————————– */
.page-title { display: none;}
/* ————————————————– */
/* Headings
/* ————————————————– */
h1, h2, h3 { margin-bottom:15px; }
h4, h5, h6{ margin-bottom: 10px; }
h1 { font-size: 24px; color: #006600;}
h2 { font-size: 18px; color: #006600;}
h3 { font-size: 16px; color: #006600;}
h4 { font-size: 14px; uppercase; }
h5 { font-size: 12px; uppercase;}
h6 { font-size: 11px; uppercase;}
h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {font-weight: normal; line-height: 1; color: #999999;}
h1 small { font-size: 22.5px; }
h2 small { font-size: 15.5px; }
h3 small { font-size: 12px; }
h4 small { font-size: 10px; }
h5 small{ font-size: 8px; }
/* ————————————————– */
/* Anchors
/* ————————————————– */
a { color: #006633; text-decoration: none;}
a:focus {outline: thin dotted #009933; outline: 5px auto -webkit-focus-ring-color; outline-offset: -2px;}
a:hover, a:active { outline: 0; }
===================END OF FILE CONTENTS================================
Please advise what must be changed to make the desired format changes. FTP credentials provided privately. Thank you.