- This topic has 44 replies, 4 voices, and was last updated 6 years, 5 months ago by
David.
-
AuthorPosts
-
November 10, 2019 at 8:07 pm #1059044
Tom
Lead DeveloperLead Developer3. Happy Forms is causing this issue. You can fix it by adding this CSS:
.screen-reader-text { left: auto !important; }4. Not too sure what you mean. What kind of widgets are you looking for?
5. To make them all align, you would need to:
1. Make the images the same height in the list settings.
2. Make it so the post titles don’t span multiple lines (or hide the overflow).There might be a CSS way to do that, but I’m not sure – I’ll check with David.
November 11, 2019 at 2:02 am #1059185David
StaffCustomer SupportTo make the post alignment look better would require elements to be of a set or minimum height.
This CSS you can apply to make all titles have a set minimum height of 3 lines:
@media(min-width: 769px) { .wp-show-posts .wp-show-posts-entry-title { line-height: 2.5ex; height: 7.5ex; overflow: hidden; } }Change the
height: 7.5ex;toheight: 5ex;to force 2 lines.
Moving the featured image above the title would also improve alignment .November 11, 2019 at 7:11 am #1059650Sapir
Where do I insert this CSS?
The form is build from parts: first name… last name.. and on..
You can insert css in each part seperatly..
Which one? or none of them?I need to know where to insert this code specificly (im not a code man:)
November 11, 2019 at 9:01 am #1059743Leo
StaffCustomer SupportNovember 11, 2019 at 10:36 am #1059805Sapir
I don’t understand. I placed the code in the simple CSS under costumization–>specific page..
Nothing happend.Can I get specific instructions please?
November 11, 2019 at 7:48 pm #1060066Tom
Lead DeveloperLead DeveloperYou’ve added that CSS to the home page? I’m not seeing it anywhere.
Can you try adding it to your global CSS (either in Appearance > Simple CSS, or the Additional CSS option in the Customizer).
November 12, 2019 at 5:42 am #1060360Sapir
Here..
https://imgur.com/a/KBTjrOvNovember 12, 2019 at 9:04 am #1060852Tom
Lead DeveloperLead DeveloperThat CSS is working – I’m not seeing any horizontal scroll on the contact page anymore.
Have you tried adding David’s CSS as well for the post titles?
November 12, 2019 at 9:43 am #1060891Sapir
Sorry, plugin was off.
Now, the Contact page have the CSS tom mentioned + the Happy forms plugin..
And still, I can’t open the contact page at mobile.Haven’t tried David’s solutions yet. I want to finish with the contact form and contact page first.
Thanks.
November 12, 2019 at 9:46 am #1060897Tom
Lead DeveloperLead DeveloperJust adjusted the CSS here: https://generatepress.com/forums/topic/wordsmith-questions/page/2/#post-1059044
November 12, 2019 at 10:11 am #1060922Sapir
I have uploaded a screen picture that I did..
And it’s still not working.November 12, 2019 at 4:05 pm #1061182Tom
Lead DeveloperLead DeveloperWhere did you share the screenshot?
Here’s what I’m seeing right now: https://www.screencast.com/t/QhWiMgdE
It’s missing the
!importantpart.Really, this is a bug in Happy Forms and RTL websites that they should address, but our CSS should fix it (it does in developer tools).
November 13, 2019 at 11:46 am #1062266Sapir
Right! Very IMPORTANT thing!
You guys are pro’s..The page that I wanted to re-arrange is that one:
https://cohens-law.co.il/blog/Look at the posts, they are messy…
If that the code David meant, so I inserted it at simple CSS, nothing happend.November 13, 2019 at 3:19 pm #1062437David
StaffCustomer SupportFor the GP Blog and the archives you would use this:
@media(min-width: 769px) { .blog .entry-title, .archive .entry-title { line-height: 2.5ex; height: 5ex; overflow: hidden; } }I set it to force 2 lines.
November 13, 2019 at 3:35 pm #1062447Sapir
Hi, Thanks.
As you can see in the link to the page, It did work, but not all of it.
It seems that the long sentence title that breaks to the second row causing a mess.
Any way to fix it? -
AuthorPosts
- You must be logged in to reply to this topic.