Adding Images for Start, Stop, Beginning and Home text links.

54 views
Skip to first unread message

freddo f

unread,
Sep 24, 2012, 5:39:40 AM9/24/12
to phpsli...@googlegroups.com
I have images for the Back and Next links but also want to use images for the Start, Stop, Beginning and Home text links. What do I need to change in the code please?

BandonRandon

unread,
Sep 25, 2012, 4:20:52 AM9/25/12
to phpsli...@googlegroups.com

Sorry I don't have a lot of time to troubleshoot and test but off the top of my head here are a few things I would try:

The first (should work and be the simplest way to do it) would be to change the lang text of the buttons.

So in slideshow.php change this....
$lang_stop_slideshow = "stop slideshow";
$lang_start_slideshow = "start slideshow";

to this...
$lang_stop_slideshow = "<img src='/stop_slideshow.png'/>";
$lang_start_slideshow = "<img src='/start_slideshow.png'/>";

that should take care of the start and stop then as far as the home/beginning this is just simple html inside of
template.html

so again this...

        <a href="<CURRENT_SHOW>">beginning</a>
        |
        <a href="/">home</a>

becomes...
        <a href="<CURRENT_SHOW>"><img src="beginning.gif"/></a>
        |
        <a href="/"> <img src="home.gif"/></a>


Let me know how that works for you.

Reply all
Reply to author
Forward
0 new messages