Centering Captions
mjs
Registered Users Posts: 152 Major grins
I am tring to center my caption underneath the large image in the lightbox.
I have entered this code into my CSS block for my theme but it isn't centering.
/* Center the caption underneath the photo */
.sm-lightbox-ft-center {
right:0 !important;
}
.sm-lightbox-ft-center .sm-lightbox-info {
text-align: center;
}
.sm-lightbox-ft-center .sm-lightbox-info > * {
text-align: left;
}
.sm-lightbox-info {
text-align: center;
}
Any suggestions? Thx
I have entered this code into my CSS block for my theme but it isn't centering.
/* Center the caption underneath the photo */
.sm-lightbox-ft-center {
right:0 !important;
}
.sm-lightbox-ft-center .sm-lightbox-info {
text-align: center;
}
.sm-lightbox-ft-center .sm-lightbox-info > * {
text-align: left;
}
.sm-lightbox-info {
text-align: center;
}
Any suggestions? Thx
msabatini.com
0
Comments
From leftquark - http://www.aaronmphotography.com/Customizations/Lightbox/Center-Lightbox-Caption-Title
From Lamah - http://www.sherlockphotography.org/Customisations/Lightbox-captions
--- Denise
Musings & ramblings at https://denisegoldberg.blogspot.com
--- Denise
Musings & ramblings at https://denisegoldberg.blogspot.com
I guess I was thinking wrong about what I wanted. Sorry. What do I need to do to center the caption below the photo?
**** I found this code in a thread by Allen and it seems to work, except font color.
/* move caption up */
.sm-gallery-image-pagination {
position: relative;
float: left;
z-index: 10;
}
/* caption center */
#sm-gallery .sm-tile-info {
max-width: none;
text-align: center;
color: #000!important;
position: relative;
top: -40px;
}
.sm-button-image-share {
position: relative;
z-index: 99;
top: 30px;
left: -85px;
}
.sm-gallery-image-tools {
position:relative;
z-index:99;
}
/* END move caption up */
Try this ("red" can be replaced by black, yellow or rgb(r,g,b)... ):