Change storefront menubar

Joomla webshop template with CSS3-based animations, VirtueMart support and one-page checkout.
GK User
Wed Jan 27, 2016 6:15 pm
Hei

I would like to make the storefront menu/logo bar white instead of black, with black letters.
Can anybody tell me how to do that.?

Dearest
Jan pihl
User avatar
Junior Boarder

teitbite
Mon Feb 01, 2016 9:49 am
Please add this code to override.css and make sure override is enabled in template settings.

Code: Select all
#gkHeaderNav {
    background: #fff none repeat scroll 0 0;
}

#gkTopMenu a {
    color: #222;
}

.gkMenu > ul > li > a {
    color: #222;
}

.gkMenu a:hover, .gkMenu a:active, .gkMenu a:focus, .gkMenu li.active > a {
    color: #666;
}
User avatar
Moderator

GK User
Tue Feb 02, 2016 8:48 pm
Put that into my design but the active link is white, it shoul be dark grey if I read the css right?
http://pinsekirkenbetel.no/nyside/index.php/delta/ny
User avatar
Junior Boarder

GK User
Wed Feb 03, 2016 5:07 am
Thank you!
User avatar
Junior Boarder

GK User
Wed Feb 03, 2016 7:44 am
Put that into my design but the active link is white, it should be dark grey if I read the css right?
HOW do i change that - tricky!
http://pinsekirkenbetel.no/nyside/index.php/delta/ny
User avatar
Junior Boarder

GK User
Thu Feb 04, 2016 10:18 pm
janpihl wrote:Put that into my design but the active link is white, it shoul be dark grey if I read the css right?
http://pinsekirkenbetel.no/nyside/index.php/delta/ny

I'm having the same issue. The CSS works great for changing the color of the menu bar and text, but the active link text is white and lost on the white back ground. I'm guessing an additional line of CSS is required for this element.
User avatar
Junior Boarder

GK User
Fri Feb 05, 2016 12:05 pm
Found the line in the menu.css, and changed it there, but no luck. still White. There must bes someting else blocking that active link.
User avatar
Junior Boarder

GK User
Fri Feb 05, 2016 12:08 pm
Found it!
Put this in instead and it works.
Code: Select all
#gkHeaderNav {
background: #fff none repeat scroll 0 0;
}

#gkTopMenu a {
color: #222;
}

.gkMenu > ul > li > a {
color: #222;
}

.gkMenu a:hover,
.gkMenu a:active,
.gkMenu a:focus,
.gkMenu li.active > a {
color: #666;
}

.gkMenu > ul > li.active > a {
color: #666;   
}
User avatar
Junior Boarder

GK User
Sun Feb 07, 2016 12:12 pm
Ha problems with the mobile menu icon to.
Put tis into override.css and into override in the the design-advanced settings.
It wont work it it is not both places - strange
Code: Select all
#gkHeaderNav {
background: #fff none repeat scroll 0 0;
}

#gkTopMenu a {
color: #222;
}

.gkMenu > ul > li > a {
color: #222;
}

.gkMenu a:hover,
.gkMenu a:active,
.gkMenu a:focus,
.gkMenu li.active > a {
color: #666;
}

.gkMenu > ul > li.active > a {
color: #666;   
}

#gkHeader > div:first-child {
   background: #f7f6f6;
}

#gkMobileMenu i {
   color: #666;
   height: 44px;
   padding: 0!important;
   position: relative;
   right: 12px;
   text-align: center;
   width: 44px;
}
User avatar
Junior Boarder

teitbite
Thu Feb 11, 2016 12:43 pm
Hi

That's a very good solution, but it's enough to have it in override.css. The one from Custom CSS field is not used in Your case anyway:
User avatar
Moderator


cron