Notifications
Clear all

How to center the logon on Tablet

3 Posts
2 Users
0 Reactions
378 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: 5 years ago

Noble Member
Posts: 1523

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