I am using color box for a modal popup now theres a link and when user clicks on that link a modal is displayed. for the contents of the modal I am pointing to a URL.
<div class="content">
<a class="Modal" href="http://yahoo.com" onclick="openModal();">Click Here </a>
</div>
The problem is since its a url there are horizontal and vertical scrollbars in the modal I just want vertical scrollbars I tired something like
<style type="test/css">#cboxLoadedContent{overflow-x:hidden !important;} </style>
but doesnt work.
Thanks
That looks like it should work. Are you sure the scrollbars are on #cboxLoadedContent and not some child element?