I am trying to make the logo appear bigger on the screen. I want to keep the logo height to "30". Understand that I could use some CSS to do that but I have limited knowledge on that. Could you assist to enlarge my logo, eg cut away the top and bottom spacing (if this is how its done).
I am trying to make the logo appear bigger on the screen. I want to keep the logo height to "30". Understand that I could use some CSS to do that but I have limited knowledge on that. Could you assist to enlarge my logo, eg cut away the top and bottom spacing (if this is how its done).
Thanks!
Hey Calvin!
/* Desktop greater then 1000px */ @media only screen and (min-width : 1000px) { body header#top #logo img { height: 74px!important; margin-top: -23px !important; } } /* Desktop */ @media only screen and (min-width : 1px) and (max-width : 1000px) { body header#top #logo img { height: 50px!important; margin-top: -17px !important; } }
Salient Support Team