Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • #1152623

    Hi!

    I need to change the color for each menue topic incl. the mouse over color.

    How can I change that?

    All the best :-)

    Screenshot

    • This topic was modified 5 years ago by vollstark.
    #1152934

    Hey vollstark,

    Your screenshot is not working, please upload it somewhere else and post a link to where we can see the actual elements as well and try to explain your intentions a bit further.

    Best regards,
    Rikard

    #1152948

    Hi!

    Here is an new link. Hope that works.

    Screenshot
    Sorry. I don´t know what it is. pictures doesn´t work :-(

    Maybe you can see my screenshot with this link:
    https://www.dropbox.com/s/gylejkjc8lowrau/Menuefarbe.jpg?dl=0

    My website is: http://www.vollstark.de

    • This reply was modified 5 years ago by vollstark.
    #1153176

    Hi,

    Thanks for the screenshot, it’s working from Dropbox. I can’t see the elements on your actual site though, where can we see them? We need to inspect the actual elements, otherwise we can’t give you accurate CSS.

    Best regards,
    Rikard

    #1153199

    Hi!

    Please have a look at the private content. :-)

    All the best.

    #1153437

    Hi,

    Thanks for that. Please try the following in Quick CSS under Enfold->General Styling:

    #menu-item-11106 .avia-menu-text {
      background-color: red;
    }
    
    #menu-item-11106 .avia-menu-text:hover {
      background-color: green;
    }
    
    #menu-item-11105 .avia-menu-text {
      background-color: blue;
    }
    
    #menu-item-11105 .avia-menu-text:hover {
      background-color: yellow;
    }

    Best regards,
    Rikard

    #1153459

    Hi!

    It works a little bit ;-)
    The main menue has the same old colour :-( That was what I wanna change ;-)

    #1153599

    Hi,

    I’m not sure I understand what you mean now, what exactly is not working?

    Best regards,
    Rikard

    #1153641

    Hi!

    You see, there are two points on the main menu. Both are the same red. I wanna have them different.
    You gave me a code to change the color of the submenu…

    All the best1

    #1153667

    Hi,

    Try this instead:

    #menu-item-11106 .avia-menu-text {
      background-color: red !important;
    }
    
    #menu-item-11106 .avia-menu-text:hover {
      background-color: green !important;
    }
    
    #menu-item-11105 .avia-menu-text {
      background-color: blue !important;
    }
    
    #menu-item-11105 .avia-menu-text:hover {
      background-color: yellow !important;
    }

    Best regards,
    Rikard

    #1153668

    Hi!

    Ah, that works fine :-) Great!

    Can I also change the font color and size?
    Can I remove the border?

    Can I set different submenu colors as well? Now they have red backgrounds as well :-(

    All the best!

    • This reply was modified 5 years ago by vollstark.
    #1154592

    hey! May you still help me?

    #1154921

    Hi,
    Sorry for the late reply to change the button font size and color please adjust your custom css, please look for:

    .avia-menu-text {
        font-size: 14px !important;
        color: #777777 !important;
        font-weight: normal !important;
        letter-spacing: 0.07em !important;
        text-transform: uppercase !important;
    }

    to remove the border, try adding this css:

    #top #wrap_all .header_color .av-menu-button-colored > a .avia-menu-text {
        border-color: transparent !important; 
    }

    to remove the red background for your sub-menu items please adjust your custom css, please look for:

    
    #menu-item-11106 .avia-menu-text {
    background-color: #6A1A35 !important;
    }
    #menu-item-11105 .avia-menu-text {
    background-color: #8D5560 !important;
    }
    

    and change to:

    
    #menu-item-11106 > .avia-menu-text {
    background-color: #6A1A35 !important;
    }
    #menu-item-11105 > .avia-menu-text {
    background-color: #8D5560 !important;
    }
    

    Best regards,
    Mike

Viewing 13 posts - 1 through 13 (of 13 total)
  • You must be logged in to reply to this topic.