- This topic has 7 replies, 2 voices, and was last updated 6 years ago by
Tom.
-
AuthorPosts
-
March 20, 2020 at 1:58 am #1200278
Roi
Hello,
1.How can I add extra google fonts that aren’t on the list?
2.RTL Problem – Menu alignment – logo should be aligned to the right.
3.RTL Problem – Sidebar alignment – It’s set on Content / Sidebar but is displayed as Sidebar / Content.
4.RTL Problem – Mobile Menu Alignment – look here: https://imgur.com/a/9GilRwd
RTL Problem – Image Alignment – I’d like the image to display from the right side of the text, instead of left – https://imgur.com/a/AmXC3D3
5.RTL Problem – Mobile preview – https://imgur.com/a/MjmdVg4Thanks 🙂
March 20, 2020 at 9:31 am #1200835Tom
Lead DeveloperLead DeveloperHi there,
1. This should help: https://docs.generatepress.com/article/customizing-the-google-font-list/#adding-your-google-font-to-the-list
2. Try this CSS:
.rtl .main-navigation:not(.grid-container):not(.mobile-header-navigation) .inside-navigation.grid-container .navigation-branding { margin-left: auto; margin-right: 0; }3. I’m seeing Content/Sidebar right now?
4. CSS in #1 should fix this.
5. Adjust the featured image alignment: https://docs.generatepress.com/article/adjusting-the-featured-images/
6. Fixed in GPP 1.10.0. For now, you can do this: https://generatepress.com/forums/topic/customize-rtl-mobile-and-tablet/#post-1189784
March 21, 2020 at 7:34 am #1201849Roi
Hi Tom,
Thanks for your prompt reply.1. Thanks!
2. It worked, but didn’t like how it looks. How can we make it look like this? https://imgur.com/a/UEEwnqi
3. Yes, it’s showing Content/Sidebar. Tried to change to Sidebar/Content as a workaround and didn’t work either.
4. Worked, but didn’t like how it looks. How can we make it look like this? https://imgur.com/a/PQ7GWZk
5. Tried, with no avail.
Left: https://imgur.com/a/ZXvhNEW
Right: https://imgur.com/a/zbjPEQr
I’d like the image to be placed exactly as it is in the demo, just from the right side -https://gpsites.co/marketer/March 21, 2020 at 3:56 pm #1202147Tom
Lead DeveloperLead Developer2. Try this:
.navigation-branding { order: 10; }3. Right now it’s set to Right Sidebar. Can you set the blog page to Left Sidebar and save so I can take a look?: https://docs.generatepress.com/article/sidebar-layout/
4. Try this:
@media (max-width: 768px) { .navigation-branding { position: absolute; left: 50%; transform: translateX(-50%); } .navigation-branding img { margin-right: 0; } }5. Can you set it to right and then let me know? Might be some broken CSS.
March 22, 2020 at 2:48 am #1203114Roi
2. It works! Just a little fix needed in the search bar – https://imgur.com/a/9oO9krQ
3. 🙂
4. Awesome.
Little fix, how can we center the logo between the edges of the header in mobile? Right now it’s shifting a tiny bit to the right.5. Changed it to Right.
6. When clicking the logo in mobile, the frame is asymmetrical. https://imgur.com/a/alGutsW
7. Desktop – Prev/Next blog post – how can we make it like this? https://imgur.com/a/Xg0MyFS
Mobile – Prev/Next blog post – it looks good the way it is, just the top one needs to be Next, and bottom previous. https://imgur.com/a/KiUr6ClThanks Tom 🙂
March 22, 2020 at 8:50 am #1206188Tom
Lead DeveloperLead Developer2. Try this:
.navigation-search input { text-align: left; }4. Try the adjusted CSS: https://generatepress.com/forums/topic/some-rtl-problems/#post-1202147
5. Try setting a featured image width: https://docs.generatepress.com/article/adjusting-the-featured-images/
6. #4 will fix this.
7. Can we start a new topic for this?
Thanks!
March 23, 2020 at 4:12 am #1207169Roi
4+6. Since you provided me with the classes, I was able to play with it around till I got the desired result. Could you please review the code and fix wherever needed?
@media (max-width: 768px) { .navigation-branding { position: absolute; left: 50%; transform: translateX(-50%); } .navigation-branding img { padding-right: 10px; padding-left: 10px; margin-right: 0px; } #site-navigation .navigation-branding, #sticky-navigation .navigation-branding { margin-left: 0px; } }/* End GeneratePress Site CSS */March 23, 2020 at 9:47 am #1207713Tom
Lead DeveloperLead DeveloperLooks good to me 🙂
-
AuthorPosts
- You must be logged in to reply to this topic.