I would also like to change the font for the sidebar – ‘whats this place’, etc. thank you
To change the font for the sidebar, exept box “What is this place?”, you need in the style.css file find this block of code:
/* Sidebar (Column 2)
-------------------------------------------------------------- */
#sidebar {
float:right;
width:210px;
font-size:100%;
line-height:110%; }
and add, example, this line:
font-family: Forum, Times New Roman, Times, Georgia, serif;
To change the font for the sidebar box “What is this place?”, you need in the style.css file find this block of code:
/* About Box */
#sidebar .about-box {
background:url(images/about_box.gif) no-repeat 10px 5px;
padding:30px 10px 20px;
font-family: Forum, Times New Roman, Times, Georgia, serif;
font-size:90%;
line-height:110%; }
and edit this line:
font-family: Forum, Times New Roman, Times, Georgia, serif;
To move the Title to right, try this:
In customizer.php file find this block of code:
/* Site Title Position. */
if ( get_theme_mod('title_position') == 'left') {
?>
#title { margin-left: 4%; }
<?php
}
if ( get_theme_mod('title_position') == 'center') {
?>
#title { margin-left: 20%; }
<?php
}
/*End - Site Title Position. */
and replace it from this:
/* Site Title Position. */
if ( get_theme_mod('title_position') == 'left') {
?>
#title { margin-left: 50%; }
<?php
}
if ( get_theme_mod('title_position') == 'center') {
?>
#title { margin-left: 50%; }
<?php
}
/*End - Site Title Position. */