I am building a video portfolio. First test page is here: http://www.steveisnothappy.com/tstory/client-portfolio/slant-fin/
I tried using shadowbox-js plugin but I think the captions should be on the bottom. Also, the captions are long. Some are three paragraphs. Things get wonky when I edit the CSS. Too bad because I think most "lightboxes" are built with the same basic JS and CSS. What do you think?
Sébastien | French WordpressDesigner answers:
change
#sb-title-inner {
font-size: 16px;
}
shadow...r=3.0.3 (ligne 16)
#sb-title, #sb-title-inner {
height: 26px;
line-height: 26px;
}
by
#sb-title-inner {
font-size: 11px;
}
shadow...r=3.0.3 (ligne 16)
#sb-title, #sb-title-inner {
//height: 26px;
line-height: 11px;
}
Sébastien | French WordpressDesigner comments:
i have edit my first answer
Sébastien | French WordpressDesigner comments:
i re-write :
here http://www.steveisnothappy.com/tstory/wp-content/plugins/shadowbox-js/shadowbox/shadowbox.css
change
#sb-title-inner {
font-size: 16px;
}
#sb-title, #sb-title-inner {
height: 26px;
line-height: 26px;
}
by
#sb-title-inner {
font-size: 11px;
}
#sb-title, #sb-title-inner {
//height: 26px;
line-height: 11px;
}
Sébastien | French WordpressDesigner comments:
is it ok ?