Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Can you show us an example page that you want this applied to? In future try to avoid modifying the theme’s files, it’s bad practice.
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Try adding this to your Child Theme style.css file:
@media screen and (min-width: 48em) {
.page-two-column.has-sidebar #primary {
width: 36%;
}
.page-two-column.has-sidebar #secondary {
width: 58%;
}
}
Very nice!
I have to change like this, becouse of the right side toolbar:
@media screen and (min-width: 48em) {
.page-two-column.has-sidebar #primary {
width: 66%;
}
.page-two-column.has-sidebar #secondary {
width: 28%;
}
}
Could you help me about the main site’s ratio?
-
This reply was modified 9 years, 3 months ago by
SzilNET.
-
This reply was modified 9 years, 3 months ago by
SzilNET.
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Looks like you’re also overriding the CSS in your Child Theme style.css file by the CSS you’ve put into the “Custom CSS” option.
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
To make your life easier I would recommend picking either to use your Child Theme style.css file or Custom CSS theme option and not both.