Hello,
I was wondering if you could adding overlapping vertical Logo, that will overlap slider?
I have attached example….
You help is much appreciated,
John
Hey killman68!
Try adding this to your custom CSS.
.logo, .logo a { overflow: visible !important; }
.logo img {
height: 400px;
max-height: 400px !important;
width: 200px;
}
And then play around with the values to change the size of your logo.
Regards,
Elliott
Hi, thanks for quick response… I tried code and it did not work, seems that it does not want to overlap bottom of header..
Thanks,
JOhn
Hey!
Send us a link and we’ll take a look. You can set your reply as private if you wish.
Cheers!
Elliott
Hey!
You had a typo. Should be working now.
Best regards,
Elliott
Hey,
Thanks for response. I just check and logo is still not overlapping slider…
You can view here http://207.58.149.176/
Thanks
Hi!
Add this on Quick CSS:
strong.logo, strong.logo a {
overflow: visible;
}
Best regards,
Ismael
Thank you very much, this worked!!! Is there a way to make a separate rule when viewing in mobile viewing mode? The logo is doing something that makes the logo look squashed…
You can view here http://207.58.149.176/ and view in mobile view…
Thanks so much,
John
Hi!
you can control the logo’s width using this:
@media only screen and (max-width: 767px) {
.responsive .logo a, .responsive .logo img {
width: 80px;
}}
Adjust 80 as needed.
Regards,
Andy