Close Link Image?

Page: 1

Author Post
Bryan8642
Guest
I'm trying to replace the "close" link image for a particular theme with a custom one I created. However, my image is much taller than the samples provided. Is there way to set the height of the info bar (where the title / close buttons would go) to accommodate my taller image?

I did find the "panelPadding" however, that is just the padding around the info bar area.

Thank you for your help.

-Bryan
Administrator
Registered: Aug 2008
Posts: 3382
The adjustment you need to make is in the floatbox.css file; in particular the following two sections:
#fbBox #fbControls {
height: 14px; /* height of control widget graphics - they should all be the same */
font-size: 1px;
}

#fbBox #fbClose {
width: 46px; /* = dimensions of the 'close' graphic */
height: 14px;
background-repeat: no-repeat;
}

Note that it is intended that all the control graphics (close, prev, next, play & pause) be the same height. You may get unsatisfactory vertical alignment of these controls if they differ in height.
Bryan8642
Guest
This is exactly what I needed. Thank you for your help!

-Bryan

Page: 1