Hi
I have editted the shopping cart summary (sidebox). For some reason after trying the list of cart contents displays with a margin to the left. I inspected this with google and it appears that there is the following style applied to this list
The incriminating bit of code is the -webkit-padding-start: 40px;Code:ul, menu, dir { display: block; list-style-type: disc; -webkit-margin-before: 1em; -webkit-margin-after: 1em; -webkit-margin-start: 0px; -webkit-margin-end: 0px; -webkit-padding-start: 40px; }
Does anyone know how to override this or why this would be happening??
I have tried overiding with the following:
andCode:ul, menu, dir { margin: 0px; padding: 0px; }
Code:* { margin: 0px; padding: 0px; }
But this does not have any effect.


Reply With Quote
