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
Hi
I just wanna ask how can I move to the top the white/red icone "bip"?
https://snipboard.io/jztgnZ.jpg
It is in the TOP BAR like an "own HTML" where I set: valign="top"
https://snipboard.io/ZcSnrb.jpg
but it's still down
Thx
Robert
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!