Hi Jonken90,
I can see your page now, thanks!
After investigating this issue, it seems that you have added this JS snippet in Global JS area:
jQuery(document).ready(function($){
$(".attgrab1").wrap('<a href="https://www.facebook.com/groups/beastmodetest/" target="_blank"/>');
$(".attgrab2").wrap('<a href="https://jonathaneriksson.se/product/beastmode-12v-conjugate-program/" />');
$(".beastmodeclick").wrap('<a href="https://jonathaneriksson.se/beastmode/" />');
$(".occlick").wrap('<a href="https://jonathaneriksson.se/online-coaching/" />');
$(".1010mclick").wrap('<a href="https://jonathaneriksson.se/1010-metoden/" />');
});
Which simply will wrap these three columns with HTML <a>
tag, and that’s enough to break our CSS styles for these columns width, I suggest replacing your JS snippet with this similar technique I described here. This will not break our CSS rules.
Thanks.