I'm noticing that that on index pages there is no dividing line at the bottom in the kosel theme there is no dividing line at the bottom of the page. Is there a way to make it appear?
Open your '_themes/kosel/css/custom.css' file in a plain text editor and add code such as the following:
.type-galleryindex section.content {
border-bottom: 1px solid #2B2B2B;
}
Also, in the "about" page the space between the main body text and the bottom line is very tight. How might I move that?
If you want to add some space between the bottom of the body text and the horizontal separator, add one (or more) HTML line breaks at the end of the content. In the text editor, click on 'Source' button and add <br>.
Alternatively, if you are not in 'Source' mode, just go to the bottom of the text and hit the enter/return key a few times.
Lastly, I'd like to tighten up the space between the bottom line and the copyright.
Open your '_themes/kosel/css/custom.css' file in a plain text editor and add code such as the following:
footer {
margin-top: 1em;
}
(The default 'margin-top' for the footer is 2em.)
The best way to go about making such tweaks (ie. things that cannot be changed within the Showkase interface) is to fire up your browser's developer tools, determine the ids and classes of the elements that you want to change and add custom CSS to your theme's 'custom.css' file.