Replacing text links with images Replacing text links with images
 

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

Main Menu

Replacing text links with images

Started by Zfolk, January 05, 2005, 01:41:26 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Zfolk

Is there a way to replace the text links (For example: 'my gallery' 'admin mode' 'upload files' etc....)

i looked at the theme: <a href="{MY_GAL_TGT}" title="{MY_GAL_TITLE}">{MY_GAL_LNK}</a> but i am not really sure how i would insert an image in there without screwing everything up. 

Thanks for any help on this :)

Joachim Müller

replace with <a href="{MY_GAL_TGT}" title="{MY_GAL_TITLE}"><img src="/path/to/your/pic.gif" width="10" height="10" border="0" alt="" /></a>(change the dimensions as needed). If you decide to use relative instead of absolute path in the src section, make sure to set the link seen from your coppermine root folder, not the theme folder.

Joachim