Viewing 7 replies - 1 through 7 (of 7 total)
  • It’s float:left in .texteDroite that causes this. You can remove float and adjust margin-left to fix this. Or, if you for some reason cannot remove float, you’ll need to add an element, e.g. <div class="clear"></div>, after <div id=”texteAccueil”> that will clear floats.

    Moderator keesiemeijer

    (@keesiemeijer)

    you can change it in youyr theme’s stylesheet style.css.
    change:

    .entry-content,
    .entry-summary {
    	clear: both;
    	padding: 12px 0 0 0;
    	text-shadow:#fff 1px 1px 1px;
    }

    to this:

    .entry-content,
    .entry-summary {
    	clear: both;
    	padding: 12px 0 0 0;
    	text-shadow:#fff 1px 1px 1px;
    	overflow: hidden;
    	width: 100%;
    }

    Thread Starter Taktik Communication

    (@nucleusgestion)

    Hey it’s working !!

    Couldn’t remove the float, but the other method worked !

    Thanks so much Andrei Olsen & keesiemeijer !!

    However, I have another problem… only in firefox (again), there is this “map” that appears :

    https://cl.ly/1P3G1x2827023x343O2U

    How can I get rid of it ?

    THANKS !

    Moderator keesiemeijer

    (@keesiemeijer)

    try:
    – deactivating all plugins to see if this resolves the problem? If this works, re-activate the plugins one by one until you find the problematic plugin(s).

    these are links from the admin bar. Normally these are only available when you are logged in. Maybe your theme is not ready for WordPress 3.1

    It’s a plugin or your theme that is showing these links but you can remove the admin bar.

    Thread Starter Taktik Communication

    (@nucleusgestion)

    Hey keesiemeijer,

    The deactivation of all plugins does not resolve the problem.
    Nor the admin bar removal ??

    Any other tip ?

    Thread Starter Taktik Communication

    (@nucleusgestion)

    Well well… still the same old problem… anyone can help ?

    Check out the bottom of any page at joannegreene.ca/dev/

    Here’s a snapshot of what it looks like on my Safari :
    cl.ly/1b2K0s2L2m3f1R0I1T2i

    Disable plugins and switch to default theme to check if admin bar is properly styled and not visible to other users than yourself. If everything is okay, start digging the php code of your current theme. functions.php would be the place to start.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Container problem ?’ is closed to new replies.