Ah ok, too bad. Thanks for your answer. Because I really do want everything in one table I decided to create one separate ‘highlight’ class in my theme’s css:
.table_highlight {
width: 300px;
margin: 0 auto;
font-weight: bold;
background-color: #FFFFE0;
border-top: 1px solid #E6DA55;
border-bottom: 1px solid #E6DA55;
text-align: center;
}
…and apply that directly to the content of the cell when creating the table (by <div class=’table_highlight’>cell content</div> ). Works almost perfect 😛 In fact, if I would remove the standard padding on table cells I probably could make it display exactly as the header.
Anyway, thanks again for thinking with me!
Thanks Ryan, works like a charm. Little bit of css tweaking and it looks almost the same. For those finding this topic later on, here are the steps I did:
- install the plugin (can be done within wordpress admin section)
- add php code (see plugin page) to header.php (just before <div class=”node”>)
- add breadcrumbs id to the css to position and color it, eg:
#breadcrumbs {
color: #2C5986;
margin-top: -44px;
}
Done 🙂