Few layout issues

Hi,
Can you please have a look at the attached image and see if you could help (i do hope so :slight_smile: )

  1. Shadow on the button (i know this was probably discussed but i cannot find a solution that works) how can i remove it?

  2. Alignment of “add to quote” buttons. I would like to have them lined up.
    How can i fix this?

Thanks in advance.

Hello @dmaudio,

Thanks for posting in! Regretfully we cannot check your site because it is under construction mode. Would you mind providing us the url of your site with login credentials so we can take a closer look? This is to ensure that we can provide you with a tailored answer to your situation.

To do this, you can create a secure note with the following info:
– Link to your site
– WordPress Admin username / password

To know how to create a secure note, please check this out: https://theme.co/apex/forum/t/how-to-get-support/288
​
Thank you.

secure note added.
Thanks

Hi @dmaudio,

Shadow on the button (i know this was probably discussed but i cannot find a solution that works) how can i remove it?

To remove the shadow, you can add the code below in Theme Options > CSS

.woocommerce li.product .quote-form button.wdm_enquiry {
    text-shadow: none;
}

Alignment of “add to quote” buttons. I would like to have them lined up.
How can i fix this?

To align it, you can add the code below in Theme Options > CSS

.woocommerce li.product .quote-form {
    position: absolute;
    bottom: 0;
}

Hope that helps

Shadow removed. Thanks!

They are lined up but not exactly we we want it.

See the attached image

Hi @dmaudio,

Please add this code as well.

.woocommerce li.product {
    padding-bottom: 30px !important;
} 

Here are some related links for further reading:

Hope this helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.