Hi florian1214
The behavior of Fixed Widget is a bit different. But first of all try to avoid those empty sidebar widgets and try again. If you want to have margin before and after the logo I would suggest you to define margins for the logo widget instead.
If this does not work you could just disable Fixed Widget and do the following by adding some CSS:
To fix the logo I would use CSS rules like #media_image-2 { position: fixed; }
. The same I would do to fix the navigation: #avada-vertical-menu-widget-3 { position: fixed; }
.
You might add some rules to setup the correct position for both the logo and navigation via margin: 10px 0px 10px 0px;
.
In the end you should define the behavior when viewing the website on a small screen device via
`
@media screen and (max-width: 699px) {
#media_image-2 { position: static; }
#avada-vertical-menu-widget-3 { position: static; }
}
`
-
This reply was modified 5 years, 3 months ago by Anonymous User 15026628.