Site logo

Archived topic

In the arabic mobile version the logo is not placed correctly

9 replies · Started by Hazem on March 12, 2019

Viewing posts 1–10 of 10

Hello

My website is multilingual, Arabic and English. In the arabic mobile version the logo is not placed correctly. it should be above the menu, instead it is on the top right corner. i want it to be similar to mobile English version.

Hi there,

Try adding this CSS:

.rtl .header-widget {
    float: none;
}

Tom

The problem is solved on the mobile version but it affected the PC version!!
Would you please take a look and solve the whole issue.

Thanks in advance

Hi there,

try this instead:

.rtl .header-widget,
.header-widget {
    float: right;
}

.rtl .site-logo,
.site-logo {
    float: left;
    margin-left: 10px;
}

hello

I tried the code you gave me. It is good but i want the logo to remain above the menu in the middle when i change the language from English to Arabic. I am talking about the Mobile version.

Hello

I informed Tom that i added the code he gave me and it worked perfectly on the mobile view but it affected the PC view. I like the PC view the way it is without the code and i love the mobile view with the code. I added the code so you can check.I appreciate your support

Give this a shot instead:

@media (max-width: 768px) {
    .rtl .header-widget {
        float: none;
    }
}

Let me know :)

Thanx a lot Tom

Problem is solved

My sincerer regards

Glad I could help :)

This archived topic is closed to new replies.