簡體   English   中英

在WordPress的header.php中的可點擊文本

[英]clickable text in header.php in wordpress

我在WordPress的header.php中有一些想要點擊的文本,但這不是嗎?

<div id="languages">ES | 
    <a href="../index_g.html">DE</a> |
    <a href="../index.html">ENG</a>
</div>

這些應該用PHP編寫嗎? 如果可以的話,請您幫忙。

我試過了

<div id="languages">ES | 
<?php echo( '<a href="../index_g.html">DE</a>' ); ?>
<?php echo( '<a href="../index_g.html">DE</a>' ); ?>
</div>

但這也不起作用。 文本仍然不可點擊。

您的#header div位於#languages div的頂部,這將隱藏鏈接。

要解決此問題,請將以下樣式添加到您的#languages div中。

#languages{
    position: relative;
    z-index: 100;
}

僅當元素具有定義的位置樣式(例如相對或絕對)時,z-index才有效。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM