Dear thatsnotmyname,
You can change logo image in this folder : your_site/templates/sj_plus/images/logo.png
and then open templates/sj_plus/css/template_blue.css file, find this code
#yt_header #yt_logoposition h1 a {
display: inline-block;
}
=>
#yt_header #yt_logoposition h1 a {
display: inline-block;
max-width:100%;
width:250px;/*edit my logo dimension*/
height:100px;/*edit my logo dimension*/
}
---------------------------
#yt_header .row-fluid > div:before {
content: "";
border-left: 1px solid #ddd;
height: 50px;
margin-top: 20px;
float: left;
-webkit-box-shadow: 1px 0 0 #fff;
-moz-box-shadow: 1px 0 0 #fff;
box-shadow: 1px 0 0 #fff;
}
=> edit: height:your_px;
Thanks!