Quote:
Originally Posted by sabillondesigns
sometimes some users have big avatars like 130px wide, so the popup doesnt show everything is suppose to, it shows a scroll bar but u cant really scroll down
is there a way to make the pop up box bigger?
|
In file ajax-tooltip.css your can change any values.
PHP Code:
#ajax_tooltipObj .ajax_tooltip_content{
border:2px solid #317082; /* Border width */
left:18px; /* Same as border thickness */
top:0px;
position:absolute;
width:300px; /* Width of tooltip content */
height:200px; /* Height of tooltip content */
background-color:#FFF; /* Background color */
padding:5px; /* Space between border and content */
font-size:0.8em; /* Font size of content */
overflow:auto; /* Hide overflow content */
z-index:1000001;
}
change value of width & height to make po pup more bigger
bye