Also any support for this mod to work in CYB- Chatbox or event forum mod
I got the images to be next to each other a sample of this is here:
http://www.allwheeljunkies.com/showt...t=24455&page=2
Now my only issue is I want people to be able to start viewing images before they are all done loading. I am looking through to see if there is a setting for this in the js files.
I need to make sure how I did it was ok so please check this over I don't want it to mess with other functions.
I went to gb_header template and changed this:
Code:
.gbmedia img, .anymattach img {
background:#fff;
border:1px solid #aaa;
color:inherit;
float:left;
margin:10px 10px 10px 5px;
padding:2px;
vertical-align:top;
width:130px;
}
To this:
Code:
.gbmedia img, .anymattach img {
background:#fff;
color:inherit;
float:none;
margin:5px 0px 5px 5px;
padding:2px;
vertical-align:top;
width:120px;
height:90px;
}
I removed the float left cause it was causing the first image to be by itself off to the left top corner while the rest of the images where in line with correct spacing. I changed the spacing a little to accommodate = spacing around all pictures. Got rid of the border because there was no type of roll over thing to let you know which picture you where on. So if you get rid of the border you will have a roll over effect with default Vbulletin a href color (mine in this case was blue). I also set a height setting so all pictures where same size and flowed together.
Then I went to gb_player template and changed this at the top:
Code:
<div id="vid-$info[unique]" class="gbmedia">
To:
Code:
<span id="vid-$info[unique]" class="gbmedia">
And at bottom changed this:
Code:
</div>
<div class="gbclear"></div>
To:
Code:
</span>
<span class="gbclear"></span>
This made it so it didn't treat each picture as a separate entity by using div.
Well it works let me know if this can damage the program in any way using span instead of div etc.