• Users inserting images to float left or right can easily find that their image is in a P element as opposed to the image AND text being within a paragraph element.

    Not a problem UNLESS the image is linked to something else in which case the neighbouring paragraph elements ‘cover’ the image and prevent the link from working.

    The workaround is this CSS:

    p > a > img.alignleft,
    p > a > img.alignright{
    z-index:1;
    }

    However, this causes a problem with the admin toolbar although it’s a minor problem. The image will now cover the toolbar if the page is scrolled down.

    It’s some sort of z-index issue with the toolbar but my style.css workaround of giving the toolbar a z-index of 9999 didn’t work.

  • The topic ‘Request re toolbar and floated linked images’ is closed to new replies.