how to change colour to header_right module on front page

GK User
Wed Jan 07, 2015 9:55 am
Where can i change the colour of the background of the module in header_right position on front page?
All the colur on my site will be red, black, white and grey, and that background is dark blue.

Thanks
User avatar
Senior Boarder

GK User
Wed Jan 07, 2015 3:16 pm
This is html module, background color - sets the css module suffix "transparent.". It is set in the " module Settings" You can select from the available styles: light, color1, color2, dark. if they do not fit , it is necessary to create a custom css style
here have all the information http://demo.gavick.com/joomla25/univers ... variations
User avatar
Senior Boarder

GK User
Wed Jan 07, 2015 3:33 pm
the module has the suffix "transparent" but in the demo, it is a dark blue transparent background and i want a grey transparent background.
if i change the transparent suffix with colour1 or 2 or light, the module comes grey, but is not transparent anymore.
User avatar
Senior Boarder

GK User
Wed Jan 07, 2015 6:32 pm
Citius wrote:the module has the suffix "transparent" but in the demo, it is a dark blue transparent background and i want a grey transparent background.
if i change the transparent suffix with colour1 or 2 or light, the module comes grey, but is not transparent anymore.


try to put this code in the templates \ gk_university \ css \ override.css.
and do not forget to include override css in template settings
Code: Select all
.dox.transparent {
background: rgba(14, 42, 45, .89)!important;
color: #you_color!important;
}

14, 42, 45 - rgb colors
.89 -transparency
User avatar
Senior Boarder

GK User
Thu Jan 08, 2015 7:33 am
I put that code but nothing changed
If you look to the
site www.evolution360.ro/test
it's still dark bleu and i wanted to be like the transparent vertical bar that you have on News module ( from front page). it is a different in colour between them and i want to make an unitar layout for my site.

Thanks for helping me.
User avatar
Senior Boarder

GK User
Thu Jan 08, 2015 2:47 pm
Hi
I do not understand English and I use a translator google) Code that I gave you - to change the color and transparency of the module. The last time I typed it manually , possibly made ​​a mistake. Here's the code exactly true
Code: Select all
/* transparent suffix */
.box.transparent {
   background: rgba(14, 22, 35, .89)!important;
   color: #97a3b8!important;
}

In order for everything to work , check 6 things: :!:
1.Copy the code from this topik
2.change settings "rgba" and color# in the code on the color that you need
3.place the modified code in Overrade.css
4.Enable option css override in the settings template
5. add to you module suffix transparent
6.Clear the cache of the Template and Browser

good luck :)
User avatar
Senior Boarder

GK User
Thu Jan 08, 2015 3:20 pm
now work!
the mistake was " .dox " instead of ".box ".
Thanks a lot.
User avatar
Senior Boarder

GK User
Thu Jan 08, 2015 6:23 pm
glad to help :)
User avatar
Senior Boarder


cron