Has anyone seen this before? Cheers
[url]http://www.custom-cable.co.uk/bluetooth-adapters/[/url]
It’s very bizarre and I cannot seem to get it to go away
It’s because of line 2578 of your styles.base.css
You have:
.prod-info {
overflow-x:auto;
overflow-y:hidden;
}
Just remove the overflows and you’ll be good to go.
Brandon
remove the overflows? scuse my ignorance mate sorry.
I’m not really sure why the overflows are there and I don’t know if by removing them it will affect anything else, but to fix the problem that you showed you need to:
Open skins/your-skin/customer/styles.base.css
Around line 2578 you should have:
.prod-info {
overflow-x:auto;
overflow-y:hidden;
}
Just change it to:
.prod-info {
}
Just give it a try and see what happens. If it messes something else up change it back and post what happens on here.
Brandon
In addition to Brandon’s suggestion, install Firebug. Easiest, quickest way to make CSS changes and see what they do before you modify your *.css files.
That’s what I used to figure out your code. ChrisW is definitely right, Firebug is the best tool for this type of stuff.
Brandon