![]() |
modifying subnav link variables
you know the table at the top, where it says "home, upload, search" etc.?
I want to edit those link variables, so that instead of being text phrases they are graphical buttons. where can i find the actuall links? thanks, Nick |
Look for the following in the settings.php file:
Code:
// ################### INITIALIZE SUB NAVBAR LINKS ######################## |
Quote:
|
From:
Code:
$photoplog['view_link'] = "<a href=\"".$photoplog_view_loc."\">".$vbphrase['photoplog_home']."</a>"; Code:
$photoplog['view_link'] = "<a href=\"".$photoplog_view_loc."\"><img src=\"path_to_image_here.jpg\" alt=\"\" border=\"0\" /></a>"; |
yeah i understand how to make the images appear but with edit and delete each picture has it's own address
|
It's the same for the other links. The A HREF part is already set. You replace the phrase part as shown in the previous post:
Code:
$photoplog['edit_link'] = "<a href=\"".$photoplog_edit_loc."\">".$vbphrase['photoplog_edit']."</a>"; Code:
$photoplog['edit_link'] = "<a href=\"".$photoplog_edit_loc."\"><img src=\"path_to_image_here.jpg\" alt=\"\" border=\"0\" /></a>"; |
All times are GMT. The time now is 02:26 AM. |
Powered by vBulletin® Version 3.8.5
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.