AltynbekKZ / galleriffic

Automatically exported from code.google.com/p/galleriffic
0 stars 1 forks source link

How to implement separate 'previous' and 'next' links? #109

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Rather  than a single control, how does one create separate 'previous' and 
'next' controls?

Original issue reported on code.google.com by A.Wallis...@googlemail.com on 4 May 2010 at 11:56

GoogleCodeExporter commented 8 years ago
Ah ha - found a way - using css position on a.next and a.previous : joy

Original comment by A.Wallis...@googlemail.com on 5 May 2010 at 10:25

GoogleCodeExporter commented 8 years ago
Hi there,

Where did you change this (which css file?) or can you give an example.
I want to put them side by side.

thx in advance.

Original comment by enigma0d...@gmail.com on 10 Mar 2011 at 11:46

Attachments:

GoogleCodeExporter commented 8 years ago
Gosh - that was ages ago... looks like I did this in the Gallerific.css file:

div.controls {
position: absolute;
z-index: 2;
}

a.next {
font-size: 24px;
font-weight: bold;
position: relative;
left: 187px;
}

a.previous {
font-size: 24px;
font-weight: bold;
position: relative;
}

div.nav-controls {
font-size: 24px;
font-weight: bold;
position: relative;
top: -3px;
}

Original comment by A.Wallis...@googlemail.com on 11 Mar 2011 at 8:26