Quote:
|
to make a dark theme - default theme and remove choise icon in right conner? Thx.
|
in every html template are this lines:
Code:
<!-- CSS -->
<link rel="stylesheet" type="text/css" href="templates/delicious_v1_1/styles/dark.css" title="dark" />
<link rel="stylesheet" type="text/css" href="templates/delicious_v1_1/styles/light.css" title="light" />
delete the line with "/light.css" and you can also delete this line
Code:
<!-- SCRIPTS -->
<script type="text/javascript" src="templates/delicious_v1_1/scripts/styleswitcher.js"></script>
the styleswitcher and his icons are in this lines:
Code:
<div id="styleswitcher">
<a href="#" onclick="setActiveStyleSheet('dark'); return false;" title="Black Theme"><img id="style_dark" src="templates/delicious_v1_1/images/style_dark.gif" name="style_dark" border="0" alt="" /></a><a href="#" onclick="setActiveStyleSheet('light'); return false;" title="White Theme"><img id="style_light" src="templates/delicious_v1_1/images/style_light.gif" name="style_light" border="0" alt="" /></a><a href="#" rel="alternate" type="application/rss+xml"><img src="templates/delicious_v1_1/images/rss.gif" alt="" border="0" /></a>
</div> <!-- styleswitcher -->
delete the part for the styleswitcher, the rest of the line now looks like:
Code:
<div id="styleswitcher">
</a><a href="#" rel="alternate" type="application/rss+xml"><img src="templates/delicious_v1_1/images/rss.gif" alt="" border="0" /></a>
</div> <!-- styleswitcher -->