WordPress Themes, Plugins and HTML Templates › Forums › Axon WordPress Theme › How to adjust logo size (larger) › Re: How to adjust logo size (larger)
July 19, 2015 at 2:25 pm
#1278
admin
Participant
Hi,
You should adjust the width according to viewport. For Example, you can use the following code snippet for the mobile devices.
/* For Very Extra Samll Devices */
@media screen and ( max-width: 359px ) {
.site-branding {
width: 200px;
}
}[/CODE]
Thanks[CODE]/* For Very Extra Samll Devices */
@media screen and ( max-width: 359px ) {
.site-branding {
width: 200px;
}
}[/CODE]
Thanks