Featured Page Widget in Home Feature Sidebar Spacing

Homepage Community Forums inSync Theme Support Featured Page Widget in Home Feature Sidebar Spacing

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #14603
    futurewebboss
    Customer

      Working on a site at http://leyla-najma.com and need some help and guidance relative to adjusting spacing of some of the widgets in Home Feature 3 sidebar. Here’s the scenario.
      In home feature 1 and 2 I’m using the Genesis Featured Post widget where the number of items to display is set to 2. In home feature 3 I’ve stacked two Genesis Featured Page widgets. The issue is the vertical spacing. You can see if you look at the page that there is a noticeable gap, or increased spacing between the two Genesis Featured Page widgets in home feature 3 which causes the 2nd widget to be displayed so that it is not vertically aligned with the widgets in Home Feature 1, or Home Feature 2. I hope I’m making sense. Anyway, is there there a method, or a setting a I can tweak so that the 2nd Genesis Featured Page widget in Home Feature 3 isn’t pushed so far down that. I would like it to be somewhat horizontally aligned with Home Feature 1 and 2.
      thanks
      Dan

      #14606
      kronos
      Customer

        I’m not sure what happened to cause that exactly, but I do know a couple ways to fix it. The easy way is to make the Home Feature 2 (hf2) have a min-height so it is equally as long as hf1 and hf3. If you add this to your hf2 css on line 1262 it would fix it –

        .home-feature-2 {
            background: #f2f2f2;
            float: left;
            min-height: 1308px;
            text-align: center;
            width: 33.3%;
        }

        Adding min-height: 1308px; pushes it down to be even with the others. Now this is the easiest way. The hard way is to go through and adjust hf1, hf2, hf3 margin and padding for the bottom of the widgets. For example, each widget has a margin/padding which adds space, and since your hf1 and hf3 are longer the hf2 gets left behind (I know you’re already aware of this).

        .home-feature-1 .widget {
            margin: 0 0 60px;
            overflow: hidden;
        }

        You also have to consider the .featured-content .entry code (around line 1500).

        Personally, I’d take the easy route and just add a minimum height for hf2 and have it adjust in different browser sizes if needed, then I wouldn’t have to adjust everything else.

      Viewing 2 posts - 1 through 2 (of 2 total)
      • You must be logged in to reply to this topic.