Hi,
is it possible to have the logo in the center and the menu next to it ( left and right)
As you can see on the hp i now made a menu point as an image but i do not know if that is the best way to do it. ( Maybe google doesn’t like it..?)
Thanks Simon
Hey simonac!
So you added the image as a background of one of your menu items. It looks fine to me. The only problem I see is that it’s not going to be displayed on smartphones. Is that what you were wanting?
Best regards,
Elliott
If there is no other way to realize this then i would leave it this way. Of course it has to be displayed on mobiles. Do you have a solution for this?
If possible i would like to use the real logo and have the menu right and left next to it. Maybe this should be another standard Menu and Logo Position. Is this possible?
Thanks a lot!
Simon
Hey!
Please change following code
div .logo {
display: none !important;
}
to following one
@media only screen and (min-width: 769px) {
div .logo {
display: none !important;
}}
And please feel free to request such header style here – https://kriesi.at/support/enfold-feature-requests/
Best regards,
Yigit
Allright, I’ll leave it as it is now.
On mobile it isn’t in the middle now. How to make it center when the screen is getting smaller?
Regards, Simon
Hey!
Please add this:
@media only screen and (max-width: 767px) {
.responsive #top .logo {
width: 100%;
}
.responsive .logo img {
display: inline-block;
}
.responsive .logo a {
text-align: center;
}}
Cheers!
Ismael
Seems to work! Thanks!