Site logo

Archived topic

full width elementor on sider site

15 replies · Started by kanada on April 9, 2021

Viewing posts 16–16 of 16

hello, how to make this bigger https://prnt.sc/12genlv
from 200px to 230px

You have this CSS somewhere on your site.

@media (min-width: 769px)
.site-header {
    position: fixed;
    left: 0;
    top: 0;
    width: 200px;
    z-index: 300;
    height: 100%;
    overflow: auto;
    overflow-x: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-overflow-scrolling: touch;
    transition: .1s ease;
}

In this CSS, adjust width: 200px; to 230px.

This archived topic is closed to new replies.