gojukebox
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Casper] Is it possible to disable LESS files and use just CSS?Absolutely, in fact I recommend it if you prefer it.
Forum: Themes and Templates
In reply to: [Casper] Cannot adjust colorsHi,
I am the theme creator. I haven’t had much free time for updates but should have this fixed shortly.this issue is being tracked at https://github.com/lacymorrow/casper/issues/87
Forum: Themes and Templates
In reply to: [Casper] older / newer post navigationIn the above answer, the HTML entities were converted into arrows.
You’ll next want to change the direction of the arrows. This can be accomplished by opening inc/template-tags.php and swapping the HTML entities
→
and←
for and vice-versa.Forum: Themes and Templates
In reply to: [Casper] older / newer post navigationOf course, understandable!
For reference, the support page for Casper is at https://github.com/lacymorrow/casper-wp/issues .Since this theme is a direct port from the Ghost blogging platform, all of the existing look and feel have been preserved with as few changes as possible. Therefore, this is neither a bug nor a feature request but a personal edit.
To swap the two button locations, open up the theme’s stylesheet and find
.older-posts{right:0;}
and.newer-posts{left:0;}
. Swap the two to read.older-posts{left:0;}
and.newer-posts{right:0;}
.You’ll next want to change the direction of the arrows. This can be accomplished by opening
inc/template-tags.php
and swapping the HTML entities→
for←
and vice-versa.That should complete the swap!
* A note about the stylesheet:
As described at the Casper homepage https://github.com/lacymorrow/casper-wp, theme development involves using node, less, and grunt to compile the stylesheet into a minifiedstyle.css
in the theme root. A human-readable version is generated incss/style.css
in the theme root. Replacing/style.css
with/css/style.css
will allow you to edit styles much more easily.Please rate Casper if you enjoy using this theme!