Space between widgets

Homepage Community Forums Legacy Theme Support Space between widgets

Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #2734
    intelisystems
    Customer

      Hi,

      I am using Legacy Theme for http://www.kjsfireandwaterrestoration.com.

      I would like to reduce space between widgets in Sidebar widget area. How can I do so?

      #2737
      Wes
      Moderator

        To adjust your sidebar widget space, take a look around line 1465 in your css file, or do a search for this –

        .sidebar .widget {
        margin: 0 0 15px;
        padding: 0 0 15px;
        }

        You can adjust the bottom margin and padding (the third numbers 15px and 15px). This will adjust the space between widgets on your sidebar. If you are talking about the homepage widget/sidebars (which is different) then let me know.

        #2760
        tjd
        Customer

          Hi Wes,

          I, too, was looking at the widget spacing in my sidebar. I have only one sidebar configuration that appears on every Page including the Home/Video page. So, it seems that adjusting one…adjusts them all. If not, then what is your suggestion?

          tomjdolan.com

          Thanx,

          Tom

          #2806
          Wes
          Moderator

            Yes if you adjust the code from above it will adjust all of the widgets in your sidebar. Is that what you were asking, or were you referring to something different?

            #2809
            intelisystems
            Customer

              Thank you for your answer.

              What if I want to reduce space for the Home Widget Area?

              #2810
              tjd
              Customer

                Mornin’ Wes,

                Yes and I tried it and it works…but the issue is not yours really, it’s with the box I created around the eNew extended widget. Actually I discovered the code on the Studio Press forums and ‘borrowed’ it. I could get it styled as far as you see it and I’m ok with the look, but then I realized the bottom border was too close to the next widget below.

                Your solution works but then it spaces out all the others down-line. So I want to shorten the red border and I can’t figure out what element to change…I’ve tried them all and no luck.  I’ll go hang-out at the other forums and see if I can encourage a response. Really Wes, you’ve been great.

                Thanx,

                Tom      tomjdolan.com

                #2811
                Wes
                Moderator

                  @intelisystems

                  If you take a look around line 698 in your css you’ll see something like this –

                  #home-bottom {
                  margin: 0 auto 0;
                  padding: 40px 0 0;
                  overflow: hidden;
                  }

                  You can change the top padding (the number 40) to 10 or 20px and that will decrease the space between the welcome and the home bottom widgets.

                  To decrease the space between the home bottom message widget that says “Call Now” and the Footer Widgets area, look for .home #content around line 920 –

                  .home #content {
                  padding: 40px 0 0;
                  }

                  and then change the 40px to 10 or 20 or whichever number will work best for you.

                  #2997
                  intelisystems
                  Customer

                    Hi Wes,

                    I understand how to reduce space between welcome and home bottom widget.

                    I would like to know how to reduce space between two widget in the same Bottom widget.

                    Please take a look at http://www.chevychaseacu.com. There are two widgets in the Home Bottom #2 and I tried to reduce space between these but I don’t know how to.

                    Also, for the second widget in the Home Bottom #2, I am using <ul><li> but bullets don’t appear and space between the lines are too big. Please let me know how to show bullets and reduce the line space.

                    Always thank you.

                    #3000
                    Wes
                    Moderator

                      The extra space is actually coming from the .featured-page/post widget itself. It has 30px of margin-bottom. If you decrease this, then it should be enough. Look around line 1531 or search for this –

                      .featuredpage .page,
                      .featuredpost .post {
                      margin: 0 0 30px;
                      overflow: hidden;
                      padding: 0;
                      }

                      ….and edit the 30px to whatever you need, and see if that is enough.

                      For the bullet points, look around line 755 for this – #home-bottom ul li and you can make your adjustments from there. If you need more assistance with this, just create a new thread and I can help you get it setup.

                      #3017
                      intelisystems
                      Customer

                        Thank you.

                        It is working so well..

                        #3019
                        Wes
                        Moderator

                          You’re Welcome!

                        Viewing 11 posts - 1 through 11 (of 11 total)
                        • The topic ‘Space between widgets’ is closed to new replies.