Tagged: logo
First…GREAT THEME! Very easy to build!
I’m working on a One page Portfolio and I have removed the menu since it’s on One pager. How do I center the logo?
Thanks so much!
Byron
Also, how do i enlarge the logo a little for responsive/mobile platforms.
Hi,
You can move the left position of the logo.
div .logo {
float: left;
position: absolute;
left: 40%;
}
Adjust the left value.
You can adjust the height of the logo on mobile view, this will also adjust the width automatically.
@media only screen and (max-width: 767px) {
.responsive .logo {
height: 200px;
}
}
Regards,
Ismael