Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1233515

    Hello,

    I’ve some Problem’s in our Shop page Product Grid: (link in private)

    1 – I don’t know in general styling where i can change the button color (adicionar) “add cart” and (Show details) and yes used Loco Translate and i’ve confirm the pt.br language file, and I changed that, nothing opens.
    2 – Alignment – I would like to have this grid aligned, the buttons would be in the same place, regardless of whether the product has more or less text

    Love tour theme, guys.

    Many Thanks,
    Pedro Pereira

    #1234048

    Hey Glammy2020,

    Thank you for the inquiry.

    1.) You can use this css code to adjust the background color of the add to cart button.

    #top .avia_cart_buttons {
    	background-color: red;
    }

    2.) We can also use css to apply a minimum height to the product header in order to align the buttons.

    #top .inner_product_header {
    	height: 136px;
    }
    

    Best regards,
    Ismael

    #1234122

    Hello Ismael,

    Thanks for the answer.

    It worked very well.

    Three more things sorry:

    – Change the fonte color in the #top .avia_cart_buttons ?

    – And take out the mouse over effect in same buttons?

    – And in the same buttons I need to chage the text “Show Detais” to “+Info”

    Many Thanks,
    Pedro Pereira

    #1234616

    Hi Pedro Pereira,

    – Change the fonte color in the #top .avia_cart_buttons ?
    Just add color to the code Ismael gave:

    #top .avia_cart_buttons {
    	background-color: red;
    }

    to:

    #top .avia_cart_buttons {
    	background-color: red;
    	color: white;
    }

    – And take out the mouse over effect in same buttons?

    #top .avia_cart_buttons {
        opacity: 1;
    }

    – And in the same buttons I need to chage the text “Show Detais” to “+Info”
    This needs to be tweaked in wp-content > themes > enfold > config-woocommerce > config.php (line 452):
    $output .= ‘get_id()).'”> ‘.__(“Show Details”,”avia_framework”).’‘;
    replace Show Details to +Info in that line of code.
    You’ll need to modify this every theme update. :(

    Best regards,
    Nikko

    #1234787
    This reply has been marked as private.
    #1234886

    Hi Glammy2020,

    I have checked the link in Private Data and it looks like the #top .avia_cart_buttons is already in white.
    Let us know if you still need further assistance.

    Best regards,
    Nikko

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