Tabs GK5 boxed layout possible?

Tabs module is the easiest and convenient way to create tabs in Joomla website with powerful features like JSON or XML support.
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
Tue Nov 04, 2014 7:32 pm
Hi guys,

I am about pushing old Joomla 2.5 to 3.5 for my educational website. All things are fine so far.
Tabs GK5 work as I want to BUT

Is it possible to draw a box around the tabs interface in custom color. The idea behind is to focus the latest information published.

Thanks.

If you want to have a look@ Joomla 3.3.6. go there http://www.fvrs-meinersen.de

Any critics are welcome ;)

Regards
Uwe
User avatar
Junior Boarder

GK User
Tue Nov 04, 2014 7:40 pm
Could you please prepare a screenshot of desired outcome?
User avatar
Moderator

GK User
Wed Nov 05, 2014 1:10 pm
screenshot.jpg
Here we go.
The (tab GK5) box is top left drawn in black this time.
Need to have such one in a color of my choice and depending on the used template.

Thanks in advance!
Regards
Uwe
User avatar
Junior Boarder

GK User
Wed Nov 05, 2014 5:19 pm
If your template allows to use custom css (aka override.css in gavick templates) you can use this code:
Code: Select all
.gkTabsGK5 {
border: 2px solid black;
}

If not, you need to edit module core files (in this case modules/mod_tabs_gk5/styles/style1.css) and find this block of code:
Code: Select all
.gkTabsGK5 {
   position: relative;
   overflow: hidden;
}

and add border to it:
Code: Select all
.gkTabsGK5 {
   position: relative;
   overflow: hidden;
   border:  2px solid black;
}
User avatar
Moderator


cron