Overlaps in X & Pro Default Breakpoint Tabs II

Hi All,

I’m still having the same issue with overlaps in the assigned breakpoints for both X Theme (in Cornerstone) and Pro (Header & Footer builders) described in my previous post:

I could use some help as overlaps like this in the programs’ basic breakpoint settings is a bit much to deal with?

Thanks

Hello @ajonesx,

I have check the other thread and I would recommend that you update the code into this:

/* Social-11 LINEAR 1x6 */

@media (min-width: 980px) and (max-width: 1185px) {
	#text-11.widget.widget_text {
		display: none;
	}
}

/* Social-14 SQUARE 2x3 */

@media (min-width : 1184px) {
	#text-14.widget.widget_text {
		display: none;
	}
}

@media (max-width : 979px) {
	#text-14.widget.widget_text {
		display: none;
	}
}

(min-width: 980px) will only take effect when the screen size is 980 pixels or more.
(max-width: 979px) will take effect as soon as the screen size is less than 980 pixels.

Hope this helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.