Hi louisapple,
The scripts are getting included just fine. You just need to add the necessary calls to your thumbnails and tabs.
First, all <img> elements inside the <div class=”pic_picx”> block needs to have this attribute:`onclick=”set_big_pic(this.src)”
so it will look something like:
<img style=”cursor:pointer;” onclick=”set_big_pic(this.src)” src=”https://i.ebayimg.com/xxx”>
As for the tabs, the <li> elements inside the <ul id=”tab” name=”tab”> block needs to have:
onclick=”tabs(‘tli’, ‘tdiv’, 2, 0)”
e.g.
`<li id=”tli0″ class=”h” onclick=”tabs(‘tli’, ‘tdiv’, 2, 0)”>Return
where the last parameter (0 in this example), points to a DIV element with an ID of tdiv0. Just increment the last parameter as you add tabs
Kind regards,
Menchie
WP Lab Support