Table background color
-
What table background are you speaking of? Not entirely sure I understand your question.
Try this link: http://jegerglad.dk/karmarkwp/?page_id=81
I don’t see any light blue background color, it’s all gray did you figure it out?
Try to put
style="background-color: #ffffff; border: 0pt none;"
into all your html tags (tr, th and td) which creates the table.In the theme’s style.css find the following codes:
table {
border-collapse: collapse;
}
table td,
table th,
table tr {
border: 1px solid #ccc;
font-family: arial;
padding: 2px 5px;
}
table th {
background: #e0e0e0;
border-bottom-width: 2px;
}
table tr {
background: #f3f3f3;
}
table tr.alternate {
background: #fff;
}
table#wp-calendar td,
table#wp-calendar th,
table#wp-calendar tr {
border: none;
}
These settings are responsible for the look of the tables. Modify them and voila… you’re done.
By the way, if you don’t use child theme, you will loose these modifications at the next theme upgrade.
Try to not touch any parent files, because it will create a lot of issues and heach aches later on whenever the theme has updates, and huge upgrades.
I posted this on Beginners resources it will help you create your child theme EASY and FAST with one click.
This should help for those having a hard time understanding how to create a child theme.
http://wordpress.org/extend/plugins/one-click-child-theme/
Download the plugin and literally click one button to create a full child theme. Your new folder on your ftp will show the new style.css, screenshot, style.rtl.
After that your ready to edit your Child Theme without ever touching the original parent theme.
Viewing 10 posts - 1 through 10 (of 10 total)
- You must be logged in to reply to this topic.