Michel van Staveren
asked 10 years ago

Hi, I would like to increase the size of the sidebar since none of the links are clearly readable.
It this possible without changing the stylesheet?

Michel van Staveren
replied 10 years ago

Thank you for your answer, this helps a lot.
The widget content size on the left however is stil too small so the text is being cut off.
How can I increase its width?

3 Answers
DominicStaff
answered 10 years ago

Hi Michel, 
To increase the size of the sidebar in the DW Wall, you can log in to Dashboard > Theme > Customize > Custom Code > Header Code then add the following code:

<style>
#sidebar {
    width: 300px;
}
#container {
    padding-left: 140px;
}
</style>

Hope this helps!

DominicStaff
answered 10 years ago

Hi Michel !
Please send me your site for further checking.

DominicStaff
answered 10 years ago

To increase the size of the sidebar in the DW Wall, you can add the following code to the “Header Code”

<style>
#sidebar {
    width: 300px;
}
#container {
    padding-left: 140px;
}

#sidebar .widget_nav_menu ul li a, #sidebar .widget_meta ul li a, #sidebar .widget_archive ul li a, #sidebar .widget_categories ul li a, #sidebar .widget_recent_entries ul li a {
    max-width: 100%;
}
</style>

 

Powered by DW Question & Answer Pro