2015-05-07 63 views
1

enter image description hereWordPress的CSS:問題與環繞文字在新聞饋送

我使用WordPress 3.6的網站鏈接是website link我面臨的問題是,上面的圖片中顯示的文本在年底得到截斷。

我發現這部分是由以下插件jquery-vertical-scroller控制的,當我看着它的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; 
 
\t word-wrap:break-word; \t 
 
} 
 
.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; 
 
}

我試圖在內容部分進行修改,但它不工作:下面

整個CSS中給出。 在這方面的任何幫助將是偉大的。

回答

1

設置類別.scrollingtext的尺寸。只是補充一點:

.scrollingtext{ 
    width: 100%; 
} 

注:調整你的需求

+0

感謝那helped..will接受2分鐘的答案 – nathandrake