Okay
  Public Ticket #2313435
Color Customization
Closed

Comments

  • AllanVazquez started the conversation

    Hi, Neuron! 

    I have some questions about costumizing color:

    The first one is in the Menu. When I load the Menu on a mobile device (Tablet / Phone) it doesn't respect the colors and the line disappears. Is it possible that it can look the same as in the Desktop version?
    (Image 1)

    Second.  All the words that have a hyperlink, have a pink color in the hover color. How can I change it?
    (image 2)

    The third is on the product page, in the quantity box. How do I change the color of the box and the text?
    (image 3)

  •  675
    Neuron replied

    Hi Allan,

    I am sorry for the late reply.

    Can you please provide me with an URL, so I can check it live.

    1) Change the menu on breakpoints:

    https://www.youtube.com/watch?v=MDCe44z17zE

    2) Add the following style in Appearance > Customize > Additional CSS.

    .elementor a:not(button):hover,
    body a:not(button):hover {
        color: your_color !important;
    }

    3) Sure, here it is.

    .woocommerce .o-product .m-product-summary .quantity input {
        background-color: your_color !important;
        border-color: your_color !important;
        color: your_color !important;
    }
    

    Kind Regards


    Subscribe to our newsletter to get the latest updates about NeuronThemes and join our community Facebook Group.

  •   AllanVazquez replied privately
  •  675
    Neuron replied

    Hi Allan,

    Please add the following style.

    .woocommerce div.product form.cart .button {
        background-color: red !important;
        color: #fff !important;
    }
    

    For the hover:

    .woocommerce div.product form.cart .button:hover {
        background-color: red !important;    color: #fff !important;
    }

    Kind Regards


    Subscribe to our newsletter to get the latest updates about NeuronThemes and join our community Facebook Group.