- This topic has 9 replies, 3 voices, and was last updated 3 years, 11 months ago by
Tom.
-
AuthorPosts
-
March 12, 2019 at 11:35 pm #837323
Hazem
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.
March 13, 2019 at 9:01 am #837898Tom
Lead DeveloperLead DeveloperHi there,
Try adding this CSS:
.rtl .header-widget { float: none; }
Documentation: http://docs.generatepress.com/
Adding CSS: http://docs.generatepress.com/article/adding-css/
Ongoing Development: https://generatepress.com/ongoing-developmentMarch 13, 2019 at 11:12 am #838031Hazem
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
March 13, 2019 at 1:47 pm #838154David
StaffCustomer SupportHi there,
try this instead:
.rtl .header-widget, .header-widget { float: right; } .rtl .site-logo, .site-logo { float: left; margin-left: 10px; }
Documentation: http://docs.generatepress.com/
Adding CSS: http://docs.generatepress.com/article/adding-css/March 15, 2019 at 3:32 am #839546Hazem
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.
March 15, 2019 at 6:21 am #839700David
StaffCustomer SupportThat CSS that Tom provided here should do that?
Can you add that, clear you caches and let us know. If it doesn’t work, leave the CSS in place so we can take a look
Documentation: http://docs.generatepress.com/
Adding CSS: http://docs.generatepress.com/article/adding-css/March 16, 2019 at 12:06 pm #840891Hazem
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
March 16, 2019 at 7:05 pm #841094Tom
Lead DeveloperLead DeveloperGive this a shot instead:
@media (max-width: 768px) { .rtl .header-widget { float: none; } }
Let me know ๐
Documentation: http://docs.generatepress.com/
Adding CSS: http://docs.generatepress.com/article/adding-css/
Ongoing Development: https://generatepress.com/ongoing-developmentMarch 27, 2019 at 12:51 am #851026Hazem
Thanx a lot Tom
Problem is solved
My sincerer regards
March 27, 2019 at 8:28 am #851567Tom
Lead DeveloperLead DeveloperGlad I could help ๐
Documentation: http://docs.generatepress.com/
Adding CSS: http://docs.generatepress.com/article/adding-css/
Ongoing Development: https://generatepress.com/ongoing-development -
AuthorPosts
- You must be logged in to reply to this topic.