PDA

View Full Version : Aligning Journal photos to the left


Zotz
Sep-25-2008, 07:56 PM
The topic of aligning Journal gallery photos to the left or right has been discussed before, but I'm still unsuccessful. I have tried the methods shown in this thread:http://www.dgrin.com/showthread.php?t=37678
...to align all Journal photos left, especially on the following pages:http://www.zotz.com/gallery/3464375_vqv49
http://www.zotz.com/gallery/3174405_mxLFN
My code may be sloppy and causing conflict. This little snippet to align all journal galleries didn't work:

.journal_entry div.left {float: right;}
This also didn't work to align right, though I don't understand fully how to adapt it:


var divs = document.getElementsByTagName('DIV');
for (var i=0; i<divs.length; i++) {
if (divs[i].className == 'photo left') {
divs[i].className = 'photo right';
}
}

Any help would be appreciated very much.