
|
Is there any way to change this around?
Every single one of my images are centered with white space around the central item. (Files, pictures, photos that I have created myself to display)
Now, when the smallest of the thumbs (within the tray) display, they show only the top left corner of my images that I’ve created. So again, is there a way to change this and center the focal point to the very middle rather than the upper left hand corner?
From a preview (the tiny thumbs in the drop down “tray”) focal point LIKE THIS:
_________________
|…………………|
|……______ …..|
|…..|yesyes|…..|
|…..|yesyes|…..|
|…..|______|….|
|…………………|
_________________
RATHER THAN like this (how it is currently):
_________________
|nonono|………..|
|nonono|………..|
|______|………..|
|…………………|
|…………………|
|…………………|
_________________
(Pardon the ASCII pictures right now. Very old-school, I know. Hopefully they align correctly on your screen.)
Please provide directions as to how to fix this problem I’ve mentioned if at all possible: which file to edit, lines to change, and what to type, etc.
Thanks so much and, by the way, I appreciate all of the hard work that you’ve put into this application.
Best,
Visions~
Tried to be as concise as possible with this post. It is a bit difficult to explain unless a person was actually looking at it as they read this. =
|
 E2
|
Open the design.css file you’re using and add the following to the stylesheet. This will center the thumbnail image.
#gallery #thumbnails img{
position:relative;
left: -50%;
top: -50%;
};
|

|
Thanks bro. You’re the man.
|