WordPress Theme: Box jumping in chrome

Hoping someone here can help me, I installed a wordpress theme on a site ( http://nationalaviationinstitute.ie/ ) and I have an issue I can’t resolve and the developer of the theme is refusing to acknowlege the issue!

If you visit the above site in Chrome, the bottom section of the site jumps up and covers the four service areas underneath the image slider. This only happens in Chrome, it’s ok in all other browsers, it’s obviously something to with the responsiveness of the site as if you resize the bottom section moves back to the correct position.

Read More

I’m fairly familiar with CSS and HTML so if anyone could give me a hand figuring out the cause of this and a possible solution I’d greatly appreciate it.

Thanks,

Anthony

Related posts

Leave a Reply

1 comment

  1. There is a javascript bug which is giving the divs inside each <li> tag style="height: 0px;" on resize event like the example below:

    <li class="span3 thumbnail">
        <div class="block-thumbnail maxheight col" style="height: 0px;"> 
            <i class="icon-3x icon-cogs"><i class="circle-border"></i></i>
            <h3>Our Courses</h3>
            <p>At NAI we have a number of different courses to suit everybody’s needs, academic to professional.  <a class="link" href="http://nationalaviationinstitute.ie/courses/">read more →</a></p>
        </div>
    </li>
    

    if you find and fix the js that is causing this problem than the problem will be fixed.

    But incase you need a faster fix you can add the following css:

    .block-thumbnail{
         display: inline-block;
    }
    

    It will override the style="height: 0px;" added by the js and the bottom section will be pushed down