Re: How to adjust logo size (larger)

#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