ResolvedLogo size in Desk ver.
Tagged: logo
- This topic has 4 replies, 2 voices, and was last updated 1 year, 10 months ago by
Althemist.
- AuthorPosts
- October 27, 2021 at 4:02 pm #31946
alexey
ParticipantHey, awesome theme guys, after purchased noticed in other forum topics that logo size is a little restrained, we as a brand, have a logo for Desk Version (the one on our front store) and one smaller (circular) version for mobile and other stuff.
As your theme has main logo and Mobile logos (and footer), you should be thinking (in future versions) to provide a bigger option at least for desk logos. As far I can see, a few of your costumers have been asking for this.
Our brand is already registered with the main logo, is in pizza boxes, paper bags etc. so rebranding it’s not an option here.
We can work for a while with our mobile logo, but in desk version, its practically unrecognizable.
If by any reasons, your team have find any solution/update to change the main logo size let us know.
To see what i mean see our current website that is: https://www.pizzaygatos.com/
And our rework (still draft) with your theme: https://pizzaygatos.com/alpha/
Thanks for your time and sorry for the long post.
October 29, 2021 at 4:43 pm #31953Althemist
KeymasterHi alexey,
I totally understand. Unfortunately, there is simply no way to make this as a global option, as it’s not possible to preserve the layout in all possible usage scenarios.
In your case I can see you don’t use the top-left and top-right menu positions, so it can be adjusted with CSS, but it’s still risky on smaller resolutions.
You can try with the following CSS, but on your own responsibility:
#header #logo { width: 600px; max-width: none; }
Hope this helps.
October 29, 2021 at 7:28 pm #31960alexey
ParticipantThanks for your response.
Actually it helps (a lot) and it looks great in desk ver. but in mobile ver. the rounded logo appears not centered, as if has some sort of right align. Any extra line in CSS that could help on that?
hope there is any solution.
October 29, 2021 at 8:11 pm #31963alexey
ParticipantActually i think I solved the problem with these extra lines, let me know your insights!
#header #logo {
width: 600px;
max-width: none;
}
@media only screen and (max-width: 959px) {
#header #logo {
float: none;
display: block;
text-align: center;
width: 100%;
max-width: none;
}November 1, 2021 at 9:40 am #31969Althemist
KeymasterYes, that should do the job.
- AuthorPosts
You must be logged in and have valid license to reply to this topic.