• Resolved Evypoo

    (@evypoo)


    Hi All,

    Apologies if this is a re-post. I am having trouble removing the Author information on my posts (I think this is due to the theme I am using, Woo-Swatch). Here is an example of the posts: http://www.chrisevansolutions.com/V2/portfolio-items/kl-communications-ic2/. I just want to remove the “by cesolutions…” section.

    They are all in my “Portfolio” section that is built into the theme. I think I have to remove the <p class=”post-meta”> tag but I’m not sure what file it lives on.

    Thank you in advance!!

    P.S. – If you can help me change the font color for the titles “KL Communications IC2” that would be BONUS POINTS…

Viewing 4 replies - 1 through 4 (of 4 total)
  • Add these to your css in your stylesheet:

    To get rid of author section:

    .post-meta {
        display: none;
    }

    To change the font color of “KL Communications IC2”:

    h2 {
        color: #FF0000;  // This is hex color red, change to your liking
    }

    Then, to get that bar do go back down since “hiding” the post author section messed with the layout:

    h2 {
        margin-bottom: 10px;
    }

    Final code should look like this:

    .post-meta {
        display: none;
    }
    h2 {
        color: #FF0000;  // This is hex color red, change to your liking
        margin-bottom: 10px;
    }

    Thread Starter Evypoo

    (@evypoo)

    Thank you so much Josh!

    So this all goes into style.css..does it matter where?

    Thread Starter Evypoo

    (@evypoo)

    WOW nevermind! That worked like a charm. You’re awesome.

    I have my moments 😉 Please mark thread as resolved.

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

The topic ‘Quick question about removing author bar’ is closed to new replies.