We build. You grow.

Get best community software here

Start a social network, a fan-site, an education project with oxwall - free opensource community software

Changing the logo size in spring theme [Solved] | Forum

Topic location: Forum home » Support » General Questions
Jozko
Jozko Jan 22 '14
Hi

I would like to change the logo size in the spring theme. In the theme the size is 208x67 and I would like to have 300x100. 


My logo is 300x100 but appears cropped 208x67. 

I tried to modify CSS 


.ow_header .ow_logo{    float: left;    background-image:url('images/logo.png');/** OW_Control type:image, section:1. General Settings, key:logoImage, label:Logo image **/    margin: 35px 0 0 0px;    width: 208px;    height: 67px;}
.ow_header .ow_logo h2{    font-size: 28px;    text-shadow: 1px 1px 0 #FFFFFF;        text-transform: uppercase;}
.ow_header .ow_logo h2 a{        display: block;        width:208px;        height:67px;

---------------

to


.ow_header .ow_logo{    float: left;    background-image:url('images/logo.png');/** OW_Control type:image, section:1. General Settings, key:logoImage, label:Logo image **/    margin: 35px 0 0 0px;    width: 300px;    height: 100px;}
.ow_header .ow_logo h2{    font-size: 28px;    text-shadow: 1px 1px 0 #FFFFFF;        text-transform: uppercase;}
.ow_header .ow_logo h2 a{        display: block;        width:300px;        height:100px;

------

and still dispalys cropped.


Any ideas?


Thx in advance


The Forum post is edited by ross Jan 27 '14
ross Team
ross Jan 27 '14
Just insert this: 

.ow_header .ow_logo{width: 300px; height: 100px}


in the edit CSS area

Jozko
Jozko Jan 27 '14
Thx ross... it works.


Jozko
Jozko Jan 27 '14
Thx ross... it works.


ross Team
ross Jan 27 '14
No problem