rtqc
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Bento] CSS to Change Sidebar WidthThank you. I did have to adjust the
@mediaand it seems to be working as I hoped.
It’s my first time coding for media but for anyone who may need it this is what I used.@media only screen and (max-width: 600px) { .content, .has-sidebar .content, .sidebar { width: 100%; float: none; padding: 0; }Forum: Themes and Templates
In reply to: [Bento] CSS to Change Sidebar WidthThe original sidebar width is 30% so the change I want is minimal. I’m hoping it won’t effect any
@mediabreakpoint settings.Does this CSS make sense?
.content {width:100%;} .has-sidebar .content {width:68.5%;} .sidebar {width:31.5%;}It seems to work but I’m not sure if I’m breaking something by using it.
Thanks again.
Forum: Themes and Templates
In reply to: [Bento] CSS to Change Sidebar WidthThank you for responding.
I had tried that prior to writing my question and I should have included my findings because it didn’t work. I am trying to make the content area 68.5% and the sidebar 31.5% but as soon as I add
.contentat anything other than 100% my full width pages with no sidebar end up at whatever percentage I put for the.contentelement.There must be some other element that defines the content area when a sidebar is present and I can’t seem to figure it out.
Thanks again.
Forum: Themes and Templates
In reply to: [Bento] Site Width Not Fixed at Customization SettingResolved
Forum: Themes and Templates
In reply to: [Bento] Site Width Not Fixed at Customization SettingThank you so much @satoristudio for the solution and quick response.
The CSS you provided worked perfectly.