Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #6381
    Claudia
    Member

    Hi there! I need assistance with the following for http://www.everestspirit.com:

    1. Line Spacing

    a. There seems to be an extra <br> more than I’d like after each paragraph. I only want one break and to me it looks like two.

    b. The same can be said for the side bar. There is too much space between each widget, especially on top of the social media icon.

    How can I minimize these spaces?

    2. Featured Content Break

    I’d like to be able to put a significant break of sorts between feature content and the start of my posts on the home page just like there is between each of my posts on the homepage. How can I make that possible?

    Thank you for your assistance!

    Claudia

     

    #6442
    Sakin
    Keymaster

    Hello Claudia,

    1. Line Spacing
    a. There seems to be an extra
    more than I’d like after each paragraph. I only want one break and to me it looks like two.
    — This is not the
    but it’s the margin. We have set different margin as per the screen size. You can change the margin by adding the following CSS in “Custom CSS” box in Theme Options panel.

    @media screen and (min-width: 1190px) { p { margin-bottom: 40px; } }
    p { margin-bottom: 30px; }
    @media screen and (max-width: 1060px) { p { margin-bottom: 20px; } }

    b. The same can be said for the side bar. There is too much space between each widget, especially on top of the social media icon.
    — You can change the margin by adding the following CSS in “Custom CSS” box in Theme Options panel.

    @media screen and (min-width: 1190px) {
    .widget { margin-bottom: 50px; }
    .widget.widget_catcheverest_social_widget { margin-bottom: 40px; }
    }
    .widget { margin-bottom: 40px; }
    .widget.widget_catcheverest_social_widget { margin-bottom: 30px; }
    @media screen and (max-width: 1060px) {
    .widget { margin-bottom: 30px; }
    .widget.widget_catcheverest_social_widget { margin-bottom: 20px; }
    }

    2. Featured Content Break:
    — Just add the following CSS in “Custom CSS” box in Theme Options panel.

    #featured-post { border-bottom: 1px solid #E6E6E6; margin-bottom: 30px; }
    @media screen and (min-width: 1190px) { #featured-post { margin-bottom: 40px; }
    @media screen and (max-width: 1060px) { #featured-post { margin-bottom: 20px; } }

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Line Spacing + Featured Content Break’ is closed to new replies.