And Further more, if you visit http://www.dindoft.se and scroll down to under the “Tweets Slider”, the text on the “Mini Products” Is also messed up, it extends too far out to the right. See for example how the text goes underneath the blog post photo to the right!
I used this shortcode in order to move the product titles on product detail pages from the product title place to just above the product price, and after I used this shortcode, all these issues I am describing appeared. I have deleted the shortcode now, however the issues persist. Thanks for help!
The shortcode I used and then deleated was :
.single.single-product .heading-text {
display: none;
}
.woocommerce div.product .entry-title {
display: block;
float: right;
width: 48%;
text-align: left;
font-size: 26px;
margin-bottom: 30px;
}
@media (max-width: 600px) {
.woocommerce div.product .entry-title {
float:left;
}
}