• Hi
    Is it possible to widen the right sidebar in the Barletta theme please? I would like to make it 300 px for ads.
    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi @bakingqueen74

    Try this in your custom css / child theme

    @media (min-width: 992px) {

    .col-md-9 {
        width: calc(100% - 300px);
    }
    
    .col-md-3 {
    	min-width: 300px;
    }
    }

    If that doesn’t work – change it to

    @media (min-width: 992px) {

    .col-md-9 {
        width: calc(100% - 300px) !important;
    }
    
    .col-md-3 {
    	min-width: 300px !important;
    }
    }
    Thread Starter bakingqueen74

    (@bakingqueen74)

    Thanks I’ll try this

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Barletta theme – widen sidebar’ is closed to new replies.