I need to make a side bar width of 300 px and golf news, be reduced accordingly – how to do it?
1 Answers
Hi,
To make the sidebar width, you can log in to Dashboard then add the following code to the style.css file:
@media (min-width: 1200px ){
#page {
max-width: 1227px;
}
.container {
width: 1225px;
}
.site-content > .content-inner > .container > .row > .col-lg-9 {
width: 885px;
}
.site-content > .content-inner > .container > .row > .col-lg-3 {
width: 340px;
}
.content-inner:before {
left: 885px;
}
}
Hope this helps !
Please login or Register to submit your answer