Removing arrows from News Gallery

Free responsive Joomla 2.5 and 3.x module to present your content with easy and intuitive way.
Rate this topic: Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.
GK User
Mon Sep 12, 2011 11:24 am
Can anybody tell me how to remove the little arrows that appear in the News Gallery view?
I have set pagination to none and it doesn't seem to remove them. Do I need to alter some code in the backend?
If so, what and where???
Many thanks
User avatar
Fresh Boarder

GK User
Mon Sep 26, 2011 1:40 am
I'm having the same issues, after updating to latest GK4,
can someone suggest how to remove arrows.
e.g see NEW in http://akwoo.com.au/corporate/
User avatar
Junior Boarder

GK User
Mon Sep 26, 2011 2:17 am
Try Below if it works and if it doesnt cause any other css errors as i dont have this template installed , just checking it from the demo...
Add it to override.css if you do have one otherwise find line 16 in cssstyle.css which is in template folder.

Code: Select all
.gkIsWrapper-gk_corporate2 .gkIsPrev, .gkIsWrapper-gk_corporate2 .gkIsNext {
    cursor: pointer;
    display:none;
}

If above causes sideeffects try just below;
Code: Select all
.gkIsPrev, .gkIsNext {
    cursor: pointer;
    display:none;
}
User avatar
Platinum Boarder

GK User
Mon Sep 26, 2011 3:57 am
Unfortunately I have tried both in override.css and none of the changes made a difference.
User avatar
Junior Boarder

GK User
Mon Sep 26, 2011 5:30 am
Try change it from "modules/mod_image_show_gk4/styles/gk_corporate2/style.css" Line 16

Original Code:
Code: Select all
.gkIsWrapper-gk_corporate2 .gkIsPrev, .gkIsWrapper-gk_corporate2 .gkIsNext {
    cursor: pointer;
}


Add display: none; as below
Code: Select all
.gkIsWrapper-gk_corporate2 .gkIsPrev, .gkIsWrapper-gk_corporate2 .gkIsNext {
    cursor: pointer;
    display:none;
}
User avatar
Platinum Boarder

GK User
Tue Sep 27, 2011 6:02 am
Thanks norman, but I can't find that line in my style#.css file. Couldn't find any mention of .gkIsPrev or .gkIsNext

Thanks.
User avatar
Junior Boarder

GK User
Tue Sep 27, 2011 9:04 am
the css is in modules folder not in template folder.
Code: Select all
http://akwoo.com.au/corporate/modules/mod_image_show_gk4/styles/gk_corporate2/style.css
User avatar
Platinum Boarder

GK User
Fri Oct 28, 2011 8:31 am
Added here
.gkIsWrapper-gk_corporate2 .gkIsPrev,
.gkIsWrapper-gk_corporate2 .gkIsNext { width:23px; height:46px; background:transparent url('images/arrows.png') no-repeat 0 0; position:absolute; cursor:pointer; display:none; margin:0; right:-35px; }

But not still the same, that correct?
User avatar
Junior Boarder

GK User
Fri Oct 28, 2011 9:17 am
That should work as well, if it doesnt send me an admin access and i ll help you

normanuk at live.co.uk
User avatar
Platinum Boarder


cron