Quote:
Originally Posted by jimsflies
I need to resolve is making the overlay itself scroll. I'm assuming this is somewhere in the css file?
|
In the 'style.css' file, look for
PHP Code:
.description {
background:transparent;
font-size:11px;
padding:10px 10px;
}
change it to
PHP Code:
.description {
background:transparent;
overflow:scroll;
font-size:11px;
padding:10px 10px;
}
That should make the registration scrollable.