Archived topic
Text get's shortened with ... and I don't know why it does that
6 replies · Started by Daan van on October 19, 2018
Hi guys!
I need your help once more! Some paragraphs get cut off or shortened with three dots ... without me (knowingly) trying to do so. Same happens in the footer widget displaying the address of the shop. What is going on and how can I fix it?
I can only see it happen on this page:
https://www.cribster.nl/wieg-huren/
But I can't see for sure that is the only one.
You can see the text shortened in the text under the header: Waarom zou je bij ons een wieg huren?
And text shortened in the 1st footer widget.
Thank you so much!
Hi there,
i am not sure where the CSS is coming from as Autoptimize is on but it is because of this:
p {
overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical
}
The overflow hidden is causing this.
If you want to flush the autoptimize cache and switch off i can take a look
Quickest response ever! I've turned it off right now :) THANKSSSSSSS
Now it is really off, forgot to flush (always bad to forget to flush)
haha :) yes it is
OK, so its some Custom CSS in Elementor. It looks like it is on the HTML widget used for the Google Reviews. Have a look in the Advance settings of that section / widget.
You are a great detective! Thank you!
Awesome glad i could help. You can make that CSS specific to that widget using:
selector p {
As long as Automptimize doesn't wreck that.