0

I have a wordpress blog and by default there is basically double spacing between every line, leaving a white space, on the text widget. This has something with the theme, and after spending some time going through the coding I was unable to find it (I'm extremely new to coding and have been teaching myself...

Anyways, even using html codes to try and reduce the space have not really helped. Here is an image of the text widget that I'm talking about: Image

And also, here's a link to my site tradingliberation.com. You can see the widget on the right side of the screen, with the label "Key Data Calendar."

Again, please keep in mind I know pretty much nothing when it comes to coding. Sorry for the ignorance and thanks for your help in advance!

4

1 に答える 1

1

コードを見ると、垂直方向の間隔の結果がline-heightCSS プロパティのようです: (style.css の 755 行目)

#sidebar ul {
    line-height: 24px;
...

サイドバーのこの小さな部分だけに行の高さを設定するには、目的の行の高さを適用する div タグでコンテンツをラップできます。

ただし、line-height をピクセル単位で定義しないでください。パーセンテージ値または EMの方が適切です。この場合、次のように変更するだけです。line-height: 150%;

この種の問題をトラブルシューティングするには、ある種の Web 開発ツールを使用する必要があります。Firefox には、ネイティブの Firebug 拡張機能があります。Google Chrome と IE の場合は、組み込みの Code Inspector です。ブラウザウィンドウで F12 を押すと、それらをオンにすることができます。

于 2013-02-16T14:39:03.993 に答える