Hey there,
You could set the content to scroll with this CSS:
.sidebar {
overflow: scroll;
}
That should stop it flowing off and some appearing to get chopped. 🙂
There is a chance that the theme has a CSS field in the options, if not then you can make a child theme:
http://codex.ww.wp.xz.cn/Child_Themes
http://premium.wpmudev.org/blog/create-wordpress-child-theme/
Or you can instead use a plugin if you like:
http://ww.wp.xz.cn/plugins/custom-css-manager-plugin/screenshots/
http://ww.wp.xz.cn/plugins/my-custom-css/screenshots/
http://ww.wp.xz.cn/plugins/pc-custom-css/
http://ww.wp.xz.cn/plugins/imporved-simpler-css/screenshots/
Have a fantastic day! 🙂
I don’t want people to have to scroll sideways on my sidebar. Isn’t there a way to set the sidebar values so that it doesn’t get cut off?
This is already a child’s theme so I can edit the CSS of the stylesheet.
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Have you talked to the people who gave you this theme?
Looking at your theme it seems that originally you have it hidden in here:
#inner .wrap {
overflow: hidden;
}
So you could change that to visible:
#inner .wrap {
overflow: visible;
}
You might like to check how that affects other areas of your site.
Just realised this is a commercial offering, unfortunately as per the forum rules I won’t be able to assist further, sorry:
http://codex.ww.wp.xz.cn/Forum_Welcome#Commercial_Products
Hope this gets you sorted, if not then you’ll need to chat with the author:
http://shop.17thavenuedesigns.com/products/genevievewp/
Take care.