Hi guys,
The text boxes on my Olark chat widget are all set much too tall compared to the way they are supposed to appear. I spoke to Olark support and they said that this is due to the following code in the theme CSS:
#top textarea {
min-height: 60px;
line-height: 1.5em;
}
Is there a way to remove this rule just for Olark? Or if not can I remove globally without affecting anything, and how would I do this through custom css?
Thank you!
Best,
Jonathan
Hi Jonathan!
You can just add the code on Quick CSS or custom.css:
#top textarea {
min-height: 30px;
line-height: .5em;
}
Please give us a link to the page with the plugin. A screenshot of the issue will help.
Cheers!
Ismael
Thanks Ismael, and what would happen if we just cancel out this rule all together so the default olark settings kick in? Will this impact any part of the theme negatively?
Ideally, we’d just remove the impact of this on the Olark widget.
Hey!
You can modify the code Ismael provided to apply the change only to the chat container:
.hbl_region textarea {
min-height: 30px;
line-height: .5em;
}
Best regards,
Josue
Perfect, thanks so much!