AI Search
Classic Search
 Search Phrase:
 Search Type:
Advanced search options
 Search in Forums:
 Search in date period:

 Sort Search Results by:

Filter by custom fields

Topic prefix

AI Assistant
Notifications
Clear all

How to center the logon on Tablet

3 Posts
2 Users
0 Reactions
998 Views
Posts: 57
Topic starter
Translate
English
Spanish
French
German
Italian
Portuguese
Russian
Chinese
Japanese
Korean
Arabic
Hindi
Dutch
Polish
Turkish
Vietnamese
Thai
Swedish
Danish
Finnish
Norwegian
Czech
Hungarian
Romanian
Greek
Hebrew
Indonesian
Malay
Ukrainian
Bulgarian
Croatian
Slovak
Slovenian
Serbian
Lithuanian
Latvian
Estonian
(@amitkool21)
Trusted Member
Joined: 7 years ago
[#61629]

Hello,

My forum is https://yatrahelpline.com/community/

I'm using this CSS to center the logo on mobile devices

@media only screen and (max-device-width : 667px) {
.fusion-mobile-logo {
display: block !important;
width: 75% !important; 
margin-top: 15px !important;
margin-right: auto !important;
margin-bottom: 15px !important;
margin-left: 47px !important;
}
}

How can I center the logo on Tablet devices also. i checked it on Samsung galaxy S9 fe Tablet.


2 Replies
Posts: 57
Topic starter
Translate
English
Spanish
French
German
Italian
Portuguese
Russian
Chinese
Japanese
Korean
Arabic
Hindi
Dutch
Polish
Turkish
Vietnamese
Thai
Swedish
Danish
Finnish
Norwegian
Czech
Hungarian
Romanian
Greek
Hebrew
Indonesian
Malay
Ukrainian
Bulgarian
Croatian
Slovak
Slovenian
Serbian
Lithuanian
Latvian
Estonian
(@amitkool21)
Trusted Member
Joined: 7 years ago

I'm bumping this post, just in case someone knows the solution.


Reply
1 Reply
Tutrix
(@tutrix)
Joined: 6 years ago

Noble Member
Posts: 1519
Translate
English
Spanish
French
German
Italian
Portuguese
Russian
Chinese
Japanese
Korean
Arabic
Hindi
Dutch
Polish
Turkish
Vietnamese
Thai
Swedish
Danish
Finnish
Norwegian
Czech
Hungarian
Romanian
Greek
Hebrew
Indonesian
Malay
Ukrainian
Bulgarian
Croatian
Slovak
Slovenian
Serbian
Lithuanian
Latvian
Estonian

Hi @amitkool21 

Try this code instead of your code above

@media only screen and (max-width: 1023px) {
.fusion-mobile-menu-design-modern.fusion-header-v7 .fusion-header .fusion-row {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

Reply
Share: