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
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