How to make >> bullets in Kubrick theme work in IE
-
Ok,
So you have just realised the nice bullet arrows in the sidebar for the Kubrick theme dont work in Internet Exploder? (what a suprise). Dont worry it’s easy to fix using a background image on the li tag.
1. Replicate the double arrow (aka » Or 0BB 020) by creating a 6×5 pixel gif image with a transparent backgound using the pencil tool in either Photoshop/ FireWorks . (Its pretty much a 3 pixel step)
2. Remove Or Comment out:
.entry ul li:before, #sidebar ul ul li:before {
content: “0BB 020”;
}
3. Add:
.entry ul li, #sidebar ul ul li {
//padding: <play around with this>
background: url(images/icons/doublearrow.gif) no-repeat 0 5px;
}4. Lastly, adjust padding on li so that there is sufficient space between double arrow and list content
Bob’s your uncle.
Note: Please note that this only fixes the bullets in the sidebar.php although it shouldnt be too hard to replicate it for doublearrows used elsewhere just make sure you back everything up if you change something!
- The topic ‘How to make >> bullets in Kubrick theme work in IE’ is closed to new replies.