Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #1334080

    Hello, I was looking to change the green colour of the banner you see when adding an item to the basket here: https://www.caspersmeets.nl/product/maxisys-ms919/ I looked at the different styling options but could not find a green colour anywhere. Any idea?

    Kind regards, Eric.

    #1334103

    Hey Eric,

    Thanks for contacting us!

    Please add following code to Quick CSS field in Enfold theme options > General Styling tab

    
    #top div.woocommerce-message {
      background-color: orange;
      color: white;
    }
    

    Best regards,
    Yigit

    #1334105

    Great, thanks Yigit, and how about the green colour you see in the message when removing an item from the shopping list? What code is used to change that?

    #1334133

    Hi,

    Please try this CSS as well:

    #top div.woocommerce-message a {
        color: #fff;
    }

    Best regards,
    Rikard

    #1334193

    Thanks Rikard, that worked.

    Now I am finalising the menu and have the following problem. When I hover on the images I added to the menus they change colour and I don’t want that. I already fixed the handcursor to change to a normal arrow. I created a css class called unclickable and used the following code in quick css, but that doesn’t seem to do the trick:

    /* Clickable menu-items adjustments */
    .unclickable > a:hover {
      cursor: default; 
    .image-overlay { display: none !important; }
    }

    Any idea how the code has to be please?

    • This reply was modified 2 years, 10 months ago by EricSmeets.
    #1334216

    Hi,

    Please try this CSS instead:

    li.unclickable a:hover {
      background-color: transparent;
    }

    Best regards,
    Rikard

    #1334226

    Hmmm, that does not seem to work at all. Could you maybe check it in the back-end?

    #1334228

    Hi,

    Please add following code to Quick CSS field in Enfold theme options > General Styling tab

    
    li#menu-item-152 a:hover,
    li#menu-item-153 a:hover,
    li#menu-item-154 a:hover {
      background-color: transparent;
    }
    

    Best regards,
    Yigit

    #1334236

    Cool! Almost perfect. Only when I click on the image and then remove the cursor from the image it changes colour haha. Any idea?

    #1334238

    Hi,

    Could you please replace the code with following one?

    li#menu-item-152 a:hover, li#menu-item-153 a:hover, li#menu-item-154 a:hover, li#menu-item-152 a:focus, li#menu-item-153 a:focus, li#menu-item-154 a:focus {
      background-color: transparent;
    }

    Best regards,
    Yigit

    #1334241

    Perfect, you’re the best! Thanks

    #1334246

    Hi,

    You are welcome! Let us know if you have any other questions and enjoy the rest of your day :)

    Best regards,
    Yigit

Viewing 12 posts - 1 through 12 (of 12 total)
  • The topic ‘Change colour of banner’ is closed to new replies.