2

I have installed a plugin in wordpress that creates image thumbnails and displays links for all the subpages of a particular page. It is being displayed on the front page of this website.

The plugin is called AutoNav. More info here.

The plugin FAQ says the following about what classes are created to create the table:

table elements: subpages-table
tr elements: subpages-row
td elements: subpages-cell
p elements inside each td: subpages-text
Thumbnail images: subpages-image
Excerpt text: subpages-excerpt

My question is how I should go about formatting my CSS to change these settings. Should I just create classes with those names?

Lastly, the links that the plugin generates work on initial page load, but once the page completely loads, the links seem to stop working and just become text. Not sure what the issue is.

4

1 に答える 1

1

私の質問は、これらの設定を変更するために CSS をフォーマットする方法です。それらの名前でクラスを作成する必要がありますか?

はい。これらは、プラグインが生成し、html の要素に適用するクラスです。

たとえば、サムネイル画像に境界線を追加する場合は、スタイルを.subpage-imageクラスに適用します。

.subpage-image {
    border:1px solid #000;
}

最後に、プラグインが生成するリンクは最初のページ読み込みで機能しますが、ページが完全に読み込まれると、リンクは機能しなくなり、テキストだけになります。問題が何であるかわかりません。

これはスライダーが原因です。完全に読み込まれると、div #slider がコンテンツをオーバーレイし、リンクをクリックできなくなります。

これを修正するには、#sliderheight:280px;を指定します。

于 2012-08-15T19:11:46.690 に答える