Viewing 5 replies - 1 through 5 (of 5 total)
  • I do have the same problem. What i see is that the controls are in the middle of my content the pictures right of the controls.

    See: http://falkzilm.de/die-wasche-aka-sommerputz/

    I think this has to do something with css but i can’t cleary determine where the error happens, tried some research but failed.

    But it is only with this theme, i’ve got another theme before and there it works perfectly also now if i change.

    Plugin Author Stefan Boonstra

    (@stefanboonstra)

    Hi Tygra and Falkzilm,

    Both your problems are caused by floating elements.

    Tygra, your problem can solved by placing the following line in your theme’s “footer.php” file, after “<!-- end of col-380 fit -->” and before your slideshow’s PHP snippet:

    <div style="clear: both;"></div>

    Falkzilm, you can solve your problem the same way by placing the line of HTML code above right before where you have placed your slideshow. That may be a little harder in your case.

    You could also go into your theme’s folder and open the “style.css” file. Look for the following block of CSS code, starting at line 2396:

    .post-single-text p{
        float: left;
        width: 100%;
        margin: 20px 0;
        color: #5a5a5a;
        font-size: 12px;
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
        line-height: 22px;
        margin-bottom: 0;
    }

    Your problem should be solved after removing the line with “float: left;” and saving the file.

    Best regards,
    Stefan

    Thread Starter Tygra

    (@tygra)

    Many,many thanks Stefan!

    Thank you very much, thought it has to do something with floating but couldn’t get into it 🙂

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Slider images on the right in firefox’ is closed to new replies.