Status
Not open for further replies.

Brian77

Active Member
66
2010
7
0
Hi, I'd like to have on my widget in sidebar scroll option. My website is http://adult-bay.info (18+). I need scroll function in these widget: "Browse Siterips" (used WP category post list) , "Recent Search Terms" (SEO SearchTerms Tagging 2) and "Tags" (CTC). Is it possible? And how? or you can do it for me for some $? Thanks
 
3 comments
Its easy enough just wrap what you want to scroll in a div set the height you want then set overflow-y to scroll.

Example:

Code:
#scroll_box{
height: 200px;
width: 300px;
overflow-y: scroll;
}
I'm assuming thats what he did.
 
Status
Not open for further replies.
Back
Top