hi. there’s a problem with the table under “order-view” … how can i solve it?
take a look: https://dl.dropboxusercontent.com/u/10849118/screenshot.png
thx for help
chris
Hi chrisholemar!
Please give us a link to the actual website. We need to inspect it live.
Best regards,
Ismael
Hey!
It does look fine on my end. Please see screenshot here http://i.imgur.com/SUy1eUw.jpg
Cheers!
Yigit
Hey!
You can add following code to Quick CSS in Enfold theme options under Styling tab
dt { padding-right: 5px!important; }
That should fix it.
Best regards,
Yigit
Hi,
I’m also having this problem but the Quick CSS didn’t fix it.
Thanks,
Neil
Hey!
Please try adding following code to Quick CSS instead
.customer_details dt { margin-right: 10px; }
Cheers!
Yigit
Hi Yigit,
That fixed it.
Thanks!
Neil
Hi!
@marrinn You are welcome Neil!
@chrisholemar please try it and confirm that it is working for you as well, so we can mark this thread as resolved :)
Cheers!
Yigit
It fixed the problem initially but then it appeared to regress again. After some further investigation it appears that the setting for .woocommerce-account dt{width:30px; display:block; font-weight: bold;} in wp-content/themes/enfold/config-woocommerce/woocommerce-mod.css is limiting the width of the element to 30px.
I updated the CSS you supplied to the following to resolve it:
.customer_details dt { margin-right: 10px;
width: inherit;}
Neil