0

I'm having difficulty trying to clip the overflow of text in a 'Recent Posts' widget on my wordpress.

The wordpress in question is an event planning blog : the theme is 'Interior Set5'

As you can see the 'Recent posts', and all widgets for that matter can't overflow properly. This leaves them looking cluttered and isn't what I hope the end result will look like.

So far I have not been able to find the code that relates to it tto edit it by hand. I've found what I believe to be the area of code in the editor, but when i changed the overflow value it did nothing, and when I erased the section of code as a whole it made no visible change to widgets at all.

If any knows how to tidy up that recent post section I'd really appreciate it.

Best

Francis

4

1 回答 1

0

将 overflow-x:hidden 添加到以下内容:

#sidebar ul li {
    background: url("images/bullet.gif") no-repeat scroll left center transparent;
    border-bottom: 1px solid #CCCCCC;
    color: #4F4F4F;
    font: 12px Arial;
    overflow-x: hidden;
}

它位于第 795 行的http://blog.orionmixology.com/wp-content/themes/Interior-set5/style.css下。如果这是您想要的,这至少会隐藏它。

我建议更改 a 标签的高度,并相应地定位背景图像。

于 2013-09-17T16:32:00.603 回答