Basit php / html soru -

3 Cevap

. Ben bir php dosyasına bu kod biraz var:

<?php ec3_get_events(
    5,                                          // limit
    '%DATE%: <a href="%LINK%">%TITLE%</a> (%TIME%)',  // template_event
'',                                     	// template_day
'j',                                   		// date_format
'<h2>%MONTH%</h2>' ); ?>

The link ... is only visible when the cursor is hovering over it. I suspect it is a style setting somewhere, but I can't figure out which one it is... TIA for tips...

3 Cevap

Kullan firebug instector ve bunu hangi stil bulacaksınız.

(Varsa?) Bir css dosyasında a ve a:hover stilleri bulmaya çalışın.

Nasıl firefox ile metni seçerek ve ardından seçilen kaynak kodu görüntüleme hakkında. Yani hile yapmak gerekir.

Bu sadece bir var Ayrıca eğer:

 <a href="link"> </a>

Kabı seçmek ve CSS ile değiştirmek için deneyin:

<style type="text/css">
    div.your-wrapper a { color:blue; }
</style>

<div class="your-wrapper">
    <a href="link.php">Invisible Link</a>
</div>

Umarım yardımcı olur