Link to home
Start Free TrialLog in
Avatar of Evert Jor
Evert JorFlag for Norway

asked on

How to incorporate hyperlinks into this ASP code?

I need to incorporate two hyperlinks in the following code to redirect the user to the corresponding product pages:


<li>

<img src="images/banner1.jpg" alt="" />

<p class="caption">40% lettere enn rustfrie instrumenter, svært god ergonomi</p>
                        </li>
               <li>
 <img src="images/banner3.jpg" alt="" />
  <p class="caption">Pakket enkeltvis i hygienisk engangspose </p>

</li>

Avatar of Lee W, MVP
Lee W, MVP
Flag of United States of America image

That's HTML code...
Where's the ASP code you want to use and what are the links?

It's pretty easy, just add the links.  Is there something not working?
Avatar of Evert Jor

ASKER

I have tried adding:
<a href="https://5-paws.com/vet/products.asp?cat=50">, but this only partially works.
It makes the image clickable, but the transition doesn't work as it should.

Below is the current code, you can view it in action at www.5-paws.com

<!-- #BeginEditable "topsection" -->
        <div class="bannner">
         <div class="bannner_left">
             <div class="callbacks_container">
                 <ul class="rslides" id="slider3">
                        <li>
           <img src="images/banner1.jpg" alt="" />
         <a href="https://5-paws.com/vet/products.asp?cat=50">
         <p class="caption">40% lettere enn rustfrie instrumenter, svært god ergonomi</p>
                        </li>
               <li>
         <img src="images/banner3.jpg" alt="" />
         <a href="https://5-paws.com/vet/products.asp?cat=50">
                          <p class="caption">Pakket enkeltvis i hygienisk engangspose </p>
                        </li>
         </ul>
            </div>
         </div>


the links open immediately   to see a transition is  you would have to slow things down.
That is the problem. Once the hyperlinks are added the sider doesn't work as it should. Without them the slider works fine.

ASKER CERTIFIED SOLUTION
Avatar of Scott Fell
Scott Fell
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial