Hey @spanakaras
Can you share a link to your site (and a page where this shows), so we can take a look and see what might be wrong?
https://liakakos.gr/product/elvicon-hc-lc/
if you observe the first column on the description tab it is wrapped
thanx
Hey @spanakaras
It looks like this may have been added in your editor code (perhaps you copied/pasted it from somewhere?), but you can fix this with some CSS code.
Go into your site’s admin Dashboard and select Appearance → Customize → Additional CSS. In the CSS textbox on the left, add the following code:
#tab-description td:first-child {
text-indent: 0 !important;
width: 200px;
}
You should see the changes right away, but this is just a preview for you, so you can experiment a little if you like.
Once you’re happy with it, select “Save Changes” from the top, and your changes will be applied to your site.
Hi @spanakaras,
Looking at your site it seems the issue is due to the CSS style.css file within a plugin you have installed called WordPress Stats Manager Pro. See this screenshot below.

Image Link: https://d.pr/i/KdrAkj
Adding some CSS to your site like this below would override that.
.single-product .entry-content table tr td {
width: auto;
}
thanx this solved the problem !
it was the plugin