For some reason, when I place the css style for a custom toolbar button image in an external css and reference that external css file either through an @Import or <link>, the button images don't show up.
<head> |
<style> |
@import url(css/toolbar_images.css); |
</style> |
<link href="css/toolbar_images.css" type="text/css" rel="StyleSheet"></link> |
</head> |
But if I put the actual css styles inside the aspx document in a <style> element, the images show up. Is this a known issue?
<head> |
<style> |
.reTool .AlignmentOptions |
{ |
background-image: url(img/justify_left.gif); |
background-position: center !important; |
background-repeat: no-repeat !important; |
} |
.reTool .InsertTimeOptions |
{ |
background-image: url(img/insert_time.gif); |
background-position: center !important; |
background-repeat: no-repeat !important; |
} |
</style> |
</head> |