i have a problem in the link below in the catalog images the regular price is inline with the sales price
they have to be centrelised and on top of eachother n the dot in between has to be removed
ive tried trough css but dosent work
and ive looked in the woocommerce core files and cant find the file where they are called into those
<div class="inner_product_header"><div class="avia-arrow"></div>
<h3>14 kt. guldring. tc. 0.10 ct. brillant W.vs</h3>
<span class="price"><del><span class="amount">kr. 6 200.00</span></del> <ins>
<span class="amount">kr. 3 400.00</span></ins></span>
<span class="onsale">Sale!</span>
</div>
cant find where this html is outputtet from (which file)
yes instaid of they are inline that they are placed on top of eachother
redularprice
sale price
n not inline with the dot removed inbetween is that possible
Hey!
Try adding this code to the Quick CSS:
span.price del, span.price ins {
display: block;
}
span.price ins:before {
content: "" !important;
}
Cheers!
Josue