Ecco un breve tutorial per modificare la sidebar:

editare sempre il file styles.css e cercare #sidebar1. modificare con:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
#sidebar1 {
        -moz-border-radius-topright: 10px;
        margin-top:11px;
        padding-left: 6px;
        border-top: 10px solid #8a8a79;
        #border-bottom: 10px solid #8a8a79;
        border-left: 1px dotted #8a8a79;
        border-top: 10px solid ##8a8a79;
        border-right:1px dotted #8a8a79;
        white-space: nowrap;
        float: left;
        background: #ebebcd;
        width: 99%;
}

cercare #sidebar2. Modificare con:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#sidebar2 {
       
        white-space: nowrap;
        padding-left: 6px;
        border-left: 1px dotted #8a8a79;
        border-bottom: 10px solid #8a8a79;
        border-right:1px dotted #8a8a79;
        padding-bottom: 5px;
        overflow: hidden;
        background: #ebebcd;
        text-overflow: ellipsis;
        float: left;
        width: 99%;
        max-width: 15px:       
        .ellipsis(/wp-content/themes/wp-rs14/jquery.text-overflow.js);
}