HoPE is a very nice WordPress theme by Patrick that I’m currently using for a travel blog.
I’ve found two minor niggles with Version 2.5.8 so far: the theme doesn’t display italics, bullet points for unordered lists or numbers for ordered lists. The fix is quite simple (just to return the styles to their defaults) but I thought I’d post the stylesheet fixes in case anybody else has the same problem:
- Edit the style.css file. You can do this via your WordPress admin interface by clicking on the menu item Appearance->Editor, then choosing the style.css file
- Search for
i, em, dfn, .fn, cite{font-style:normal;}
and replace with
i, em, dfn, .fn, cite{font-style:italic;}
- Search for
.entry-content ul{list-style-type:none;}
and replace with
.entry-content ul{list-style-type:disc;}
- Search for
.entry-content ol{list-style-type:none;}
and replace with
.entry-content ol{list-style-type:decimal;}
- Update the file
- View your website again (don’t forget to click refresh your browser to clear the cache)