Wordpress CSS:在新闻源中包装文本的问题

时间:2015-05-07 08:13:55

标签: html css wordpress

enter image description here

我正在使用wordpress 3.6,网站链接为website link我面临的问题是上图中显示的文字最后会被截断。

我发现这个部分是由以下插件jquery-vertical-scroller控制的,当我查看它的css来控制单词的格式化时。

整个css如下:



/*
Plugin Name: jQuery Vertical Scroller
Plugin URI: http://sirisgraphics.com/development/jquery-vertical-scroller-2-0
Description: A plugin to add a widget to scroll posts in your sidebar or footer widgets for WordPress powered by jQuery
Version: 2.3
Author: Vamsi Pulavarthi
Author URI: http://sirisgraphics.com/
License: GPLv2
*/

/* Widget related styles */
.sgjvs_widget_title {
    /* Add your custom css here  for title */
}
.sgjvs_widget_title a {
    /* Add your custom css here  for title */
    
}
.sgjvs_widget_date {
    /* Add your custom css here  for date */
}
.sgjvs_widget_content {
    /* Add your custom css here for content */
    font-style: italic !important;
    display: inline-block;
	word-wrap:break-word; 	
}
.sgjvs_widget_excerpt {
    /* Add your custom css here for excerpt */
    font-style: italic !important;
}

/* Shortcode related styles */
.sgjvs_sc_title {
    /* Add your custom css here  for title */
}
.sgjvs_sc_title a {
    /* Add your custom css here  for title */
    
}
.sgjvs_sc_date {
    /* Add your custom css here  for date */
    
}
.sgjvs_sc_content {
    /* Add your custom css here for content */
    font-style: italic !important;
display: inline-block;
word-wrap:break-word; 
}
.sgjvs_sc_excerpt {
    /* Add your custom css here for excerpt */
    font-style: italic !important;
}




我尝试在内容部分下进行更改但不起作用。 在这方面的任何帮助都会很棒。

1 个答案:

答案 0 :(得分:1)

设置课程.scrollingtext的大小。只需添加:

.scrollingtext{
   width: 100%;
}

注意:根据您的需要进行调整