Style question

Hello there,

i got a problem with the "on go" thing:

<font class="narrow">TITLE: <?php printImageTitle(true); ?></font>

if i click on the imagetitle the whole style shows up like: font:...,size:.. etc.
how do i have to write this class within the php thing, something like:

TITLE: <?php<font class="narrow"> printImageTitle(true);</font> ?>

of course it crashes...
can somebody help?

Comments

  • acrylian Administrator, Developer
    Besides the fact that the <font> tags is deprecated ans should not be used anymore: `TITLE:<?php printImageTitle(true); ?>`
  • Ah, i see. foxed it.

    Another style question:

    I tried to set up css:

    .imagethumb a:active {
    border:solid 1px #ff0000;
    }

    to show where i´m now on the thumbnails. But doesn´t work?
    can i do something else?
  • You may want to try the hover class instead, so when your mouse moves over it highlights the thumb. I used that and it works.
  • I tried hover, that works of course, but what i need is an active status what has been clicked right now. like the album_menu_active...
Sign In or Register to comment.