Forever Theme – Changing Spacing Around Tagline

  • Unknown's avatar

    Hi, I’m trying to edit the CSS to make less spacing on the bottom and top of the words “Inspirations from a style lover in the city” I figured out part of it.

    }
    #site-description {
    border
    text-align: center;margin-bottom: 0;
    padding-top: 0;
    padding: 0 0 2em;

    Changing the 2em to 0em after padding removes the spacing from the bottom but I can’t figure out how to remove the spacing above the words.

    I’m at fadedmstyle.wordpress.com

    Thanks for the help!!

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

  • Unknown's avatar

    helolo there,
    Only Staff are providing CSS editing support these days and will not be available until Tuesday > http://en.support.wordpress.com/contact/

  • Unknown's avatar

    You are totally on the right track! There are a few other things that affect spacing for the tagline on the Forever theme, and so you can adjust some of those to make it work. Note that there is certainly more than one way to do this particular task, here is one I came up with:

    #main {
      padding-top: 0;
    }
    #access {
      margin-bottom: 0;
    }
    #site-description {
      padding: 1em 0;
    }
  • The topic ‘Forever Theme – Changing Spacing Around Tagline’ is closed to new replies.