• https://simplythewildside.com

    if you look at the ‘sponsors’ area on the right hand sidebar you’ll notice some dead space between the picture and the border. i do not want to make the pictures any larger, i want to shrink the sidebar to fit, so there isn’t the empty space.

    same thing on my ‘advertisement’ box

Viewing 1 replies (of 1 total)
  • Please inquire at theme support page: https://www.ads-software.com/support/theme/evolve

    That said, looks like this is making the sidebar wider:

    .aside {
    min-width: 320px;
    width: 34%; <====this is the culprit
    }

    on line 58 of index (are you using a custom CSS theme option or plugin?)

    try:

    .aside {
    min-width: 320px; <==this could be edited but each widgets content also
    width: 34%; <==remove this line helps
    }

    There are also responsive layout @ media items:

    @media screen and (max-width: 990px)
    .aside {
    width: 232px;
    }

    etc to be dealt with – consult the theme dev.

Viewing 1 replies (of 1 total)
  • The topic ‘Evolve Theme: resizing sidebars’ is closed to new replies.