Close

Different font

staeri
9 years ago
#8668 Quote
Avatar
  • 7
Which is the best way to have different fonts in the mega menu in a multi store setup? For example Verdana in store A and Arial in store B.

Can this be done with "Custom Head Styles"?
nikola.dragiev
9 years ago
#8680 Quote
Avatar
  • Moderator
  • 154
Hello,

You can do that with the multistore functionality of the theme plugin. Just set the store you want to change from the dropdown and click the checkbox on Custom Head Styles that you want to overwrite it. Then simply add the CSS code:
.header-menu>ul {
  font-family: Verdana;
}

and it will apply only for that store.
  
Best regards,
Nikola Dragiev
Nop-Templates.com
staeri
9 years ago
#8696 Quote
Avatar
  • 7
Thanks a lot!

I also want to change the font for the following text on the welcome page the same way:

"Featured products"
"Our Brands"
"ALLURE Reponsive Theme"
"Company info"
"About us"
...
...

I can't find the correct css syntax for this. Can you please help me?
nikola.dragiev
9 years ago
#8698 Quote
Avatar
  • Moderator
  • 154
Hello,

Here are the names of the selectors for this titles:

/*Featured products*/.product-grid .title strong,
/*Our Brands*/.nop-jcarousel .carousel-title span,
/*ALLURE Reponsive Theme*/.topic-html-content-title h2,
/*Company info etc.*/.footer-block h3{}


you can add the font styling you want in the curly brackets.
Best regards,
Nikola Dragiev
Nop-Templates.com