Hi there,
We have almost finished (for now) working on our website.
There is this 1 specific question I would like to ask. It has to do with the styling of the extra buttons from woocommerce and the css I used.
I would like the button on the top to align to the right and the other buttons on the page to the right.
I have tried to give the button a unique ID, but I guess I made mistake somewhere.
I have placed this in the product page
<p id="buttonbovenav" >[add_to_cart id="794"]</p>
I have placed this in the custom css
#buttonbovenav a.button.product_type_simple.add_to_cart_button.ajax_add_to_cart {
float: right !important;
}
Can you find the time to help me and check what I did wrong?
Maaike
Hey Yoginess,
Please try this in Quick CSS instead:
a.button.product_type_simple.add_to_cart_button.ajax_add_to_cart {
float: right;
}
Best regards,
Rikard
thank you rikard!