Support » Theme: Reddle » Byline in Reddle

  • I am very new to CSS, and I’m having trouble getting my byline to show up accurately under my post titles. I have found the section in my stylesheet that controls this (the single-author byline), which was set to “display: none.” When I remove that line, I am able to get the “Posted by…” to show up, but the remainder of the line shows up in html code rather than just displaying my name, like this:

    Posted by <a href="http://www.marmalademementos.com/byline/meg-woolston/" rel="tag">Meg Woolston</a>

    What would I need to do to fix this so that it just reads “Posted by Meg Woolston”? Thank you!

Viewing 1 replies (of 1 total)
  • Moderator Kathryn Presner

    (@zoonini)

    Rather than editing the parent theme directly, it’s better to leave it intact, and make your changes with some custom CSS.

    If you edit the parent theme, you’ll lose your changes every time the theme is updated.

    Since you’re already using Jetpack, an easy way to add custom CSS is to activate the Custom CSS module. You’ll then add your custom CSS in the new stylesheet editor that’ll appear in your dashboard, under Appearance > Edit CSS.

    Try adding this to your custom CSS and let me know if it does the trick:

    .single-author .byline {
    	display: block;
    }

Viewing 1 replies (of 1 total)
  • The topic ‘Byline in Reddle’ is closed to new replies.