- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-30-2020 03:09 AM
Unable to remove extra space from widget text. Its happening for only few items which is having (/()).If anyone knows the it please help me.
OOB Widget Name : Recent & Popular items
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2020 10:44 PM
Hi All,
This was happened due to text align: justify in CSS. And also in OOB we have some standard container length and some restrictions.
So to resolve my issue i have increased my class="col-sm-6 col-md-4" and its adjusted the container columns. And also i have removed " text align: justify"from my CSS and added "text align: left ". Then my issue got resolved

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-30-2020 03:24 AM
Hi Keerthi,
Try adding this CSS rule to the HTML element that's displaying those fields:
white-space: pre-wrap;
https://developer.mozilla.org/en-US/docs/Web/CSS/white-space
Mark Correct if this solves your issue and also mark Helpful if you find my response worthy.
Thanks,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-30-2020 06:33 AM
Hi ,
Please refer to below link:
Thanks,
Sumanth
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2020 10:44 PM
Hi All,
This was happened due to text align: justify in CSS. And also in OOB we have some standard container length and some restrictions.
So to resolve my issue i have increased my class="col-sm-6 col-md-4" and its adjusted the container columns. And also i have removed " text align: justify"from my CSS and added "text align: left ". Then my issue got resolved