Certain questions appear with a predictable frequency from those of you who have found Ahimsa for WordPress worthwhile, so here is a FAQ that hopes to answer them in one place.
How do I add an image / photo to the header?
How do I make my blog title (left column of header) not wrap text making the header taller than it needs to be?
The way to avoid this is to prevent the text wrap by making the spaces between words non-breaking in some way. One way is to edit your blog title (in the settings page) and replace spaces in it with which is the HTML way of saying “give me a non-breakable space”. Another way is to style it by creating a
custom.css file in your Ahimsa theme directory and entering in it:
#title
{
white-space: nowrap;
}