Theme TwentyFourteen CSS not displaying correctly
-
Site: https://cksla.org/temp-WP
The leftBox code below is what is being displayed. This is incorrect.
.leftBox > h2 {
background: #;
padding-left: 15px;
font-size: 14px;
font-weight: normal;
color: #910000;
line-height: 14px;
padding-top: 5px;
padding-bottom: 5px;
padding-right: 10px;
}
The correct code should look like this:
.leftBox > h2 {
background: #a60200;
padding-left: 15px;
font-size: 14px;
font-weight: normal;
color: #FFFFFF;
line-height: 14px;
padding-top: 5px;
padding-bottom: 5px;
padding-right: 10px;
}Here is the actual CSS code:
.leftBox > h2 { background: #A60200; padding-left: 15px; font-size: 14px; font-weight: normal; color: #fff; line-height: 14px; padding-top: 5px; padding-bottom: 5px; padding-right: 10px; }I have deleted the offending code and re-installed the original code, but it still doesn’t appear correctly on the page.
How do I solve this?
Thank you Richard
- The topic ‘Theme TwentyFourteen CSS not displaying correctly’ is closed to new replies.