Right Module Position Wrong Width - Question | JoomShaper
🎃 Halloween Sale is Live! Get 35% OFF on all plans. Sale ends soon! Get Offer

Right Module Position Wrong Width

Karen Dunne

Karen Dunne

Helix Framework 4 months ago

Hi,

This page, https://nicheslandtrust.org/news uses a module in the right position. It's expected that it would take up the whole column but it doesn't. Helix layout settings are set for the right position to render on the right side of the mainbody.

Please see these screenshots for explanation: https://monosnap.com/file/rQ3NDyjTFgyrsGVkt5p7a3VsXXiVyJ https://monosnap.com/file/CSx1dfC658GX0bOJ0pEu5Dx9ZfKE21 https://monosnap.com/file/gdkg0vwlGaoOBpPnrqKyVqBdtSYjdu https://monosnap.com/file/HRdQ32QSg7xfoY1knJViqeGwYujywh

Content on other pages that also use a right position module, e.g. https://nicheslandtrust.org/job-opportunities, do render in the entire container.

How to get the right module position to take up the full column on that news menu item?

Thanks,

Karen

0
4 Answers
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 4 months ago #195556

Hi Karen.

To be honest You forced that layout using that (easy to miss)

@media (min-width: 1400px) {
  .itemid-363 .col-lg-8 {
    flex: 0 0 auto;
    width: 58.666667%;
  }
}

in custom.css file. That's why component area in 1st column (col-lg-8) is smaller than it should be, and right column is not right align. Remove "width: 58%" and will be OK.

OR keep 58% but make 2nd column (sidebar) wider.

100% - 58.6666% = 42.3333% || Simple math :]

0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 4 months ago #195558

BTW

That site has nice logo, very creative ;) in general, www look nice, my earth colors.

0
Karen Dunne
Karen Dunne
Accepted Answer
4 months ago #195561

Thank you. I love the logo, and it's one of my favorite sites visually. Lots of great photography to work with.

0
Karen Dunne
Karen Dunne
Accepted Answer
4 months ago #195559

Ah, for heaven's sake, the CSS was one up from where I was looking. Geez, sorry about that. I was staring at this for a long time before posting. I added that media query originally but something must have changed that made it irrellevant now.

Thank you for catching it. I appreciate it.

0