Home › Forums › Support › Fixing sidebar widths over 769px This topic has 5 replies, 2 voices, and was last updated 3 years, 4 months ago by Tom. Viewing 6 posts - 1 through 6 (of 6 total) Author Posts July 20, 2020 at 12:33 pm #1370058 Arp I followed some of the other forum posts in attempting to do this, but none of them address ‘pull’ classes. What I’m trying to do is a 3 column format where 1) the left column is fixed at 205px wide 2) the far right column is fixed at 355px wide 3) the content width is calc(100%-560px) It looks like I’ll have to customize the left values for each device width I’m targeting (due to the .pull-xx classes)? Or is there an easier way? July 20, 2020 at 3:22 pm #1370169 TomLead Developer Lead Developer Hi there, You shouldn’t need to worry about the pull or push classes. Something like this should work: @media (min-width: 769px) { #right-sidebar { width: 355px; } #left-sidebar { width: 205px; } .content-area { width: calc(100% - 560px); } } July 21, 2020 at 10:25 am #1371125 Arp I tried that already, and both the left column & primary content areas were not in the right place. I had to futz with the push amount to get them to be where they were supposed to. July 21, 2020 at 3:12 pm #1371425 TomLead Developer Lead Developer Hmm, I suppose that makes sense since the push/pull widths need to match the sidebar widths. If you aren’t able to match them, feel free to link me to the page with the above CSS added and I should be able to tweak it. July 22, 2020 at 10:52 am #1372532 Arp I’m going to see if the customer notices or just accepts it as is π July 22, 2020 at 2:42 pm #1372715 TomLead Developer Lead Developer Sounds good – let me know π Author Posts Viewing 6 posts - 1 through 6 (of 6 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In