Site logo

Archived topic

how can I move to the top the white/red icone "bip" to the top ?

3 replies · Started by Robert on July 11, 2022

Viewing posts 1–4 of 4

Hi Robert,

To clarify, are you wanting something like this?: https://share.getcloudapp.com/Kouj1gnb

If so, with your current structure, one approach to do it is through adding CSS like this through Appearance > Customize > Additional CSS:

@media (min-width: 769px) {
    .inside-top-bar {
        width: 100%;
        display: flex;
    }

    aside#media_image-6 {
        order: -1;
    }

    aside#media_image-5 {
        margin-left: auto;
    }

    aside#block-38 {
        margin-right: 60px;
    }
}

This applies the changes for Desktop and tablet.

Hope this helps!

thx!

You’re welcome Robert!

This archived topic is closed to new replies.