removing the "float: left;" worked perfectly. I'm also trying to center the photo's inside of the "g-album-grid" div, but "text-align: center;" does not seem to do the trick. I would think this would work because the "g-item-id-xx" child divs are located in the "g-album-grid" (the parent). Do you have any suggestions for this?
thanks for the help.
Posts: 27300
What if you make the thumbs bigger to fill the available space?
If not, what is going to go into the unused space?
Do you want them centered?
Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team
Posts: 27300
You have 3 missing css files. View your source to see.
anyway you can edit the css from the theme:
#g-content #g-album-grid .g-item { background-color: #fff; border: 1px solid #fff; float: left; padding: .6em 8px; position: relative; text-align: center; width: 213px; z-index: 1; }and remove
float: left;
That will make them vertical.
Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team
Posts: 60
removing the "float: left;" worked perfectly. I'm also trying to center the photo's inside of the "g-album-grid" div, but "text-align: center;" does not seem to do the trick. I would think this would work because the "g-item-id-xx" child divs are located in the "g-album-grid" (the parent). Do you have any suggestions for this?
thanks for the help.
Posts: 27300
margin-left: auto; margin-right: auto; position: relative; display: table;Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team
Posts: 60
That worked perfectly. Thanks again.
Posts: 1
Glad I found this thread. you wouldn't belive the trouble I have had with this simple code - cheers floridave!