Hi
How can I increase the width of right sidebar in Wallpress theme
thanks
1 Answers
Hi,
To increase the width of right sidebar in Wallpress theme, you can add the following code to the style.css file:
#sidebar-secondary {
width: 320px !important;
}
.single #sidebar-secondary .item {
width: 100% !important;
}
@media only screen and (max-width: 1235px) {
#content {
max-width: 100%;
}
}
Hope this helps !
Please login or Register to submit your answer