Reddle Theme's CSS code

  • Unknown's avatar

    How can I access the original Reddle Theme’s CSS? I did last week and now can’t seem to find it for anything.

    I’ve managed to widen the content width, however the date “circle” is now too far left off of the page. I’m sure I could figure it out (eventually) if I could just see the original CSS.

    Thanks so much!

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi, if you haven’t already, I would suggest trying out your browser’s web inspector tool, which you can use to find the CSS for elements in your site. We have a support document with some brief screencasts to get you started here: How to Find Your Theme’s CSS.

    I used it to find the CSS for the date circle/link. Add this to your CSS and it will center the date circle on the left white edge of the content area.

    .secondary footer .permalink {
        left: -29%;
    }

    The above puts the circle touching the title, so find this in your CSS and edit the last number to 3.8%

    .secondary #content {
        margin: 0 37.5% 0 3.8%;
    }

    You can play with the -29% and 3.8% numbers to get the spacing you desire.

  • The topic ‘Reddle Theme's CSS code’ is closed to new replies.