Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter wordpress_quest

    (@wordpress_quest)

    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!

    Thread Starter wordpress_quest

    (@wordpress_quest)

    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:

    1. install the plugin (can be done within wordpress admin section)
    2. add php code (see plugin page) to header.php (just before <div class=”node”>)
    3. add breadcrumbs id to the css to position and color it, eg:
    #breadcrumbs {
      color: #2C5986;
      margin-top: -44px;
    }

    Done 🙂

Viewing 2 replies - 1 through 2 (of 2 total)