- This topic has 2 replies, 2 voices, and was last updated 5 years, 11 months ago by .
Viewing 3 posts - 1 through 3 (of 3 total)
Viewing 3 posts - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.
Support › Forums › Flex Theme › Flex Pro – Home Middle Widget not responsive on mobile
Tagged: "home middle", responsive, widgets
Hello we are on Version 1.5 of the Flex Pro Theme.
The included “Home Middle” widget does not see to be responsive for smart phones. Looks like the the width for that container is set for desktop, with no option for mobile.
All other responsive aspects seem OK
Site is under development: http://wizzan.wpengine.com/
Sounds like there might be some CSS code missing. If you provide, I can add it in, if required.
Thanks
Chris
Ramblin Jackson
It is not Flex theme issue. May be you are using the Custom CSS plugin and added the following CSS
.home-middle {
width: 1140px;
}
You’ll remove it.
Thank you for finding our error with the width.
Just an FYI – we were experiencing an issue when 3 Featured items were in the middle home widget. The third featured item would wrap to a new line.
We fixed the problem with this CSS. Just thought we would share on the forum:
.home-middle .featuredpage:nth-of-type(3n+1) {
clear: none;
margin-left: 0;
}