Notifications
Clear all

Limited Support

Our support team is currently on holiday from December 25, 2025 to January 7, 2026, and replies may be delayed during this period.

We appreciate your patience and understanding while our team is away. Thank you for being part of the wpForo community!

Merry Christmas and Happy Holidays! 🎄

How to center the logon on Tablet

3 Posts
2 Users
0 Reactions
861 Views
Posts: 57
Topic starter
(@amitkool21)
Trusted Member
Joined: 6 years ago

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
(@amitkool21)
Trusted Member
Joined: 6 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: 1521

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