Sona
(@support-web-dorado)
@misszana,
Please go to plugins/wd-facebook-feed/frontend/views/FFWDViewBlog_style.php
search for
.bwg_blog_style_object_description_
and add here within the style
word-wrap: break-word;
This should resolve your issue.
Moderator
Jan Dembowski
(@jdembowski)
Forum Moderator and Brute Squad
Please go to plugins/wd-facebook-feed/frontend/views/FFWDViewBlog_style.php
search for
@support-web-dorado And when the plugin is updated the user will lose their work.
Can you recommend a custom CSS plugin option that will not get erased when the plugin is updated? I hate to suggest !important and you may know a better way.
Sona
(@support-web-dorado)
@misszana,
You can add the following to template CSS:
.bwg_blog_style_object_description_0
{word-wrap: break-word !important;
}
@jan,
This might cause problems with other plugins though, but it will not be erased. We also tend to avoid using !important, thus it was suggested to have it included in php file. Thanks.