Dragosvr92 wrote: Sun Nov 27, 2016 6:55 pm
Adding the clear class breaks the existing layout of your div and you need to add extra css code to get it back to normal.
People that add content in the event usually want it to show in the main page footer, less on these pages: Memberlist, The team, Viewing Profiles, Vieving Groups.
Seems odd/unusual that you need to do extensive tweaking because the Jumpbox is badly placed and overlaps on plain new contents.
But thats just me.......
Then use a clearing div before your content to break the floats. Works just fine:
<div class="clear"></div>
It's not odd/unusual to have to make your template event listener work. You are injecting new code into a style. You can't assume your own code will just work plug-n-play. You have to make your code work within the style, at the injection point. The template events are, afterall, still what you should consider part of the style and are thus required to do whatever needed to make them work with the style (and that applies to every style).