Private: Home › Forums › WordPress Themes › Elvyre – Retina Ready WordPress Theme › Adjust Logo size › Reply To: Adjust Logo size
December 19, 2014 at 3:34 pm
#1372
Participant
Hello,
Copy and paste the following CSS code into your “Elvyre options -> Appearance – Custom CSS” box:
#logo {
margin: 5px 0 0 0;
}
#logo a img {
height: 70px;
width: auto;
}
The image size in the example above is smaller, less wide. If you want to use the full width and height of an image, just use this code:
#logo {
margin: 0;
}
Robert