Code
img { border-top-width: 0px; border-right-width: 0px; border-bottom-width:
0px; border-left-width: 0px}
0px; border-left-width: 0px}
And still there is a border around the link images. Its not happening in .726 så eny ideas?
Show your support for Zikula! Sign up at Github account and watch the Core project!
Are you abolutely sure that the CSS change is taking effect, many browsers cache stylessheets. In this kind of situation it's always helpful if you actually provide a link to the problem.
The proper CSS code to fix this borders is
a img (
border: 0px;
}
This sets a 0 pixel border on any image tag inside an anchor tag.
-Mark
Code
img { border-top-width: 0px; border-right-width: 0px; border-bottom-width:
0px; border-left-width: 0px}