Viewing 17 posts - 1 through 17 (of 17 total)
  • Author
    Posts
  • #310413

    Hi, i need a special font in my menu, with bigger size, and no border arround.

    What is the css i have to use for this ?

    my background color is #66FFFF.

    #310417

    Hey BetuwePC!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab to remove borders

    .av-main-nav > li > a {
    border: none!important;
    }

    You can change font size, color and family in Enfold theme options > Advanced Styling tab. You should edit “Main menu links”

    Regards,
    Yigit

    #310422

    thanks, but what about the height of the menu ?

    #310425

    Hey!

    Please add following code to Quick CSS as well and adjust as needed

    .html_header_top.html_bottom_nav_header .main_menu>div, .html_header_top.html_bottom_nav_header .main_menu ul:first-child { height: 60px; }
    #top .av-main-nav > li > a { height: 60px; line-height: 60px; }

    Regards,
    Yigit

    #310438

    Super, thanks

    and is it possible to use a own font ?

    I have ballpark 400.js and Champagne__Limousines_300.font.js

    #310451
    #310495

    del

    • This reply was modified 10 years, 1 month ago by BPC.
    #310803

    Hi!

    What are the font file formats that you have on your installation? Where did you place the font folder? If possible, please post the font face code that you use on pastebin.com

    Regards,
    Ismael

    #310979

    del

    • This reply was modified 10 years, 1 month ago by BPC.
    #311155

    Hi!

    Thank you for that info but we need to see what’s inside. I mean, we need to see the code. You actually add the font face code on the Quick CSS field or the custom.css file. What are the font file formats that you have?

    Best regards,
    Ismael

    #313635

    Euhm, lets try another way.

    As you can see on the site in my first post i have 2 fonts ready.

    – segoe_uiregular
    – champagne__limousinesregular

    I need the first one for the p and li text
    The second one for the menu and H2 tags.

    I use this in quick css

    .av-main-nav , h2 {
    font-family: “champagne__limousinesregular”, Georgia, Serif;
    }

    p , li, widget {
    font-family: “segoe_uiregular”, Georgia, Serif;
    }

    But the menu gets the wrong font, you see what going wrong ?

    #313638

    Oh, and the H2 is making everyhting in CAPS, i dont need that.

    #313664

    Hi!

    Please try adding !important rule as following

    .av-main-nav , h2 {
    font-family: “champagne__limousinesregular”, Georgia, Serif !important;
    }
    
    p , li, widget {
    font-family: “segoe_uiregular”, Georgia, Serif !important;
    }

    also add following code to Quick CSS

    .template-page .entry-content-wrapper h1, .template-page .entry-content-wrapper h2 {
    text-transform: none; }

    Regards,
    Yigit

    #313948

    No that doesnt do the trick

    What i have in quick css is this now :

    .fallback_menu {
    background-color: #66FFFF;}
    .av-main-nav > li > a {
    border: none!important;
    }
    .html_header_top.html_bottom_nav_header .main_menu>div, .html_header_top.html_bottom_nav_header .main_menu ul:first-child { height: 60px; }
    #top .av-main-nav > li > a { height: 60px; line-height: 60px; }

    .av-main-nav , h2 {
    font-family: “champagne__limousinesregular”, Georgia, Serif !important;
    }

    p , li, widget {
    font-family: “segoe_uiregular”, Georgia, Serif !important;
    }
    .template-page .entry-content-wrapper h1, .template-page .entry-content-wrapper h2 {
    text-transform: none; }

    #314279

    Hey!

    Try with this code:

    .av-main-nav li a{
        font-family: "champagne__limousinesregular" !important;
    }

    Please note that providing fixes for third-party plugins is outside our support scope.

    Cheers!
    Josue

    #322936

    I understand, but i cant get it working.
    Can i ask you if you have an other trick for me to get this 2 fonts working ?

    #323198

    i have it working, Thanks for all the help !

Viewing 17 posts - 1 through 17 (of 17 total)
  • The topic ‘Menu height and border’ is closed to new replies.