• Resolved wpismypuppet

    (@wordpressismypuppet)


    Just a quick note that I’ve noticed your clearing of the columns is not working properly (as in your very last empty div that should clear the content below the columns themselves). You have the very last div doing the clear, which is great, but it’s set to “display: none” which negates the clear altogether. At least in Firefox as I have not tested in other browsers.

    If you remove the “display: none” it works, but it could lead to complications if other css overwrites the clear properties. I would recommend the following inline style for this:

    <div style="clear: both; float: none; display: block; height: 0; width: 0; font-size: 0; line-height: 0; visibility: hidden;"></div>

    This will do the same thing, but set the div to a 0x0 element, with no font size and no line height to reduce extra padding or margin on the element. Also, the visibility will keep the element on the page and acting the way it should, while still removing it visibly from the page.

    Again, this is just a suggestion on how to fix it, but currently it’s not working. I have to add a hack in my css to fix it. I use the following:

    .csRow:after {
    	display: block;
    	content: '';
    	height: 0;
    	clear: both;
    	visibility: hidden;
    	font-size: 0;
    	line-height: 0;
    }

    Which of course will not work in older versions of IE. But we don’t support IE7 and lower, so this fix works for us and may even be an option for you.

    http://ww.wp.xz.cn/plugins/advanced-wp-columns/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author LordMX

    (@lordmx)

    Hi wpismypuppet,

    And thank you for your feedback.

    This issue will be fixed very soon, thank you.

    Regards,
    Vladica

    Plugin Author LordMX

    (@lordmx)

    It’s included in 2.0.4 version.

    Cheers 😉

    Thread Starter wpismypuppet

    (@wordpressismypuppet)

    Thanks for the quick response and quick fix! We’ve used this plugin in the past, but it had some flaws that were hard to work around. However, your hard work and dedication has made this plugin really fantastic!

    The ability to now format the content within the columns, drag and drop for different column sizes and layouts, responsive design, and the ability to go back in and reformat the columns without losing any work are major updates!

    We have added this plugin back into our collection and will use it often! It’s really become much more user friendly, not just developer friendly, which makes it easier for us to pass on to our clients.

    Thanks again for the help, and the hard work.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Columns Don't Clear’ is closed to new replies.