Extend Logo Length In Keynote Template - Question | JoomShaper

Extend Logo Length In Keynote Template

chierasr

chierasr

Template 3 years ago

How can i extend the length of the svg logo in keynote template thanks

0
5 Answers
Mehtaz Afsana Borsha
Mehtaz Afsana Borsha
Accepted Answer
Support Agent 3 years ago #77062

Hi,

Thanks for contacting us. You can use this custom CSS

body #sp-header .logo{
  width:200px !important;
}

Path towards custom CSS: Extensions>Templates>Styles> Click on your current default template name then choose Template Options. Then find custom CSS within the custom code.

-Regards.

0
chierasr
chierasr
Accepted Answer
3 years ago #77063

thanks for that and how is the css for mobile to extend? best

0
Mehtaz Afsana Borsha
Mehtaz Afsana Borsha
Accepted Answer
Support Agent 3 years ago #77212

Use this CSS for mobile device

@media (max-width: 767px){
img.logo-image {
    width: 150px !important;
  }
}
0
chierasr
chierasr
Accepted Answer
7 months ago #188009

Hello, i´m trying to made the logo wider in https://eventosaaoo.com.ar using the custom css body #sp-header .logo{ width:200px !important; } but seams that the heigh of the logo remain the same and not modify the width at all can you help me with that? thanks

0
Mehtaz Afsana Borsha
Mehtaz Afsana Borsha
Accepted Answer
Support Agent 7 months ago #188012

Hi

Use this CSS in your custom.css file

body #sp-header .logo {
    width: 210px !important;
}
0