A new plugin installed on the site is effecting the layout of the main page. Expect the fix to be minor. Just need help to pinpoint the problem.
The grid block should show next to each other. Now they ended up only below each other. Could be a script, could be css.
Check: Nordicdesign.ca
Arnav Joy answers:
this is the css which is causing problem
.clear {
clear: both;
}
NordicDesign comments:
Hi Arnav!
Can you give me a line number?
Thanks!
Kjartan
Arnav Joy comments:
add following to style.css
#content .clear{clear:none}
Arnav Joy comments:
or add this directly to following css
.grid .post{clear:none}
but please make sure this is not effecting elsewhere
Arnav Joy comments:
you can also try this
open loop-index.php file and find following line
<div id="loop<?php echo $j?>" class="new_cat <?php echo $view_mode; ?> clear">
replace this with
<div id="loop<?php echo $j?>" class="new_cat <?php echo $view_mode; ?> ">
remove the clear
NordicDesign comments:
Great work again Arnav!! Quick and good replies.