To make the Page background transparent I used this… currently looking for a fix to stop all images on the site from also becoming transparent 🙂 … a fix appreciated 🙂
http://www.johannamusic.com/wp/
#page {
max-width: 1102px;
margin: 12px auto;
padding:0 30px 30px;
background-color:#fff;
zoom: 1; /* gives the object layout */
-ms-filter: “progid:DXImageTransform.Microsoft.Alpha(Opacity=90)”;
filter: alpha(opacity=90);
-moz-opacity: 0.90;
-khtml-opacity: 0.90;
opacity: 0.90;
z-index: 0;
}
Edit the following code in a Child Theme style.css file
font-size: 2.1em; <<<<<<<< CHANGE THIS LINE TO THE SIZE YOU WANT
/* Header
——————————————— */
#site-title {
padding: 21px 0 15px;
}
#site-title h1 {
margin: 0 12px 0 0;
font-size: 2.1em;
line-height:1.2;
font-weight: bold;
text-transform:uppercase;
display: block;
float: left;
}
http://MaxLow.com