Tagged: , , ,

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #27916

    Hi,

    I need to increase the width my sidebar (or reduce the padding) so that images display at 300 px wide. Right now, the theme is reducing the image sizes to fit. The images are advertisements, and they need to be displayed at that dimension.

    My website is: http://electricliterature.com/blog

    Please help!

    Many thanks,

    Ben

    #135813

    Hey,

    You can decrease the size of the content container, the sidebar will then increase in size.

    @media only screen and (min-width: 1340px) {
    .responsive_large .container .nine.units {
    width: 850px;
    }
    }

    @media only screen and (min-width: 1140px) {
    .responsive .container .nine.units {
    width: 690px;
    }
    }

    .container .nine.units {
    width: 600px;
    }

    @media only screen and (max-width: 989px) and (min-width: 768px) {
    .responsive .container .nine.units {
    width: 450px;
    }
    }

    Regards,

    Ismael

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Increasing Width of Sidebar Images to 300 px’ is closed to new replies.