x

Logo Resizing Hides Background

Looking for some help,

Am using the "Clean Lines" theme. When viewing on mobile the Logo appeared too small. I have successfully increased the logo size using the below; however, this increase has caused the header to flow over the background and thus hides the image there in the banner. Please provide the correct code/advice on how I can increase the logo and essentially "move" the rest of the page down so nothing else is affected. 

Used to increase logo:

.wsite-logo a img{
margin:1!important;
max-height: 200px;
max-width: 300px;

Thanks in advance. 

949 Views
Message 1 of 6
Report
1 Best Answer

Best Answer

Thanks all,

Actually figured it out through a lot of trial and error. The following in red fixed my issue:

#wrapper {

box-sizing:border-box;

z-index:10;

background: @footer;

position: relative;

width:100%;

min-height:100%;

padding-top:400px;

-webkit-box-shadow:0px -0px 5px rgba(87, 87, 87, 0.2);

-moz-box-shadow:0px -0px 5px rgba(87, 87, 87, 0.2);

-o-box-shadow:0px -0px 5px rgba(87, 87, 87, 0.2);

box-shadow:0px -0px 5px rgba(87, 87, 87, 0.2);

View Best Answer >

930 Views
Message 2 of 6
Report
5 REPLIES 5
Square

If you post a link to your site I'm sure one of our Community members could help, @nickbbim.

942 Views
Message 2 of 6
Report

@nickbbim:  Try brisk theme....It can accomodate large logo.

932 Views
Message 2 of 6
Report

Best Answer

Thanks all,

Actually figured it out through a lot of trial and error. The following in red fixed my issue:

#wrapper {

box-sizing:border-box;

z-index:10;

background: @footer;

position: relative;

width:100%;

min-height:100%;

padding-top:400px;

-webkit-box-shadow:0px -0px 5px rgba(87, 87, 87, 0.2);

-moz-box-shadow:0px -0px 5px rgba(87, 87, 87, 0.2);

-o-box-shadow:0px -0px 5px rgba(87, 87, 87, 0.2);

box-shadow:0px -0px 5px rgba(87, 87, 87, 0.2);

931 Views
Message 2 of 6
Report

@nickbbim:  good for you!

928 Views
Message 2 of 6
Report
Square

Thanks for sharing your solution, @nickbbim!

923 Views
Message 2 of 6
Report