Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter himminfo

    (@himminfo)

    The search bar is float as you scroll it moves down the page obscuring the post. I haven’t a clue what to do so explain it simply please.

    harukainc.com

    sacredpath

    (@sacredpath)

    Automattic Happiness Engineer

    Hi, the div that is causing the issues is the following:

    <div class="googlepublisherpluginad" style="text-align: center; width: 100%; height: auto; clear: both;">

    It appears like you have added a Google Ad plugin that is causing this. Temporarily disable that plugin and then test and I think you will find the issue will go away.

    The following is one possible solution which moves the menu/search section to the top of the page and the ad below it.

    .site-header {
        position: fixed;
        top: 0;
    }
    .googlepublisherpluginad {
        margin-top: 70px;
    }
    .hentry {
        padding-top: 1em;
    }

    If you have not yet done so, I would suggest creating a child theme so that any customizations you make will not be overwritten by a future theme update. Alternately you can use the Edit CSS function in the Jetpack plugin, or use one of the other Custom CSS plugins that will keep CSS changes from being overwritten.

    Child Themes
    Child Theme creation plugins
    Jetpack plugin
    Custom CSS plugins

    Thread Starter himminfo

    (@himminfo)

    Thank you! Most importantly for how simply and precisely you answered.

    sacredpath

    (@sacredpath)

    Automattic Happiness Engineer

    You are welcome. ??

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Isola search bar is floating’ is closed to new replies.