Support › Forums › Flex Theme › Home Middle Widgets › Reply To: Home Middle Widgets
May 10, 2015 at 12:34 pm
#212
Moderator
If you really want to show one text widget before the 3 columns featured page widgets: you can make the following change in the style.css file.
Look for following code in style.css file
.first,
.home-middle .featuredpage:nth-of-type(3n+1) {
clear: both;
margin-left: 0;
}
Change it to this (basically replace 3n+1 with 2)
.first,
.home-middle .featuredpage:nth-of-type(2) {
clear: both;
margin-left: 0;
}
-
This reply was modified 7 years, 1 month ago by
Davinder Singh Kanith.