Jump to content

Linking problem


ptityop

Recommended Posts

Hi,

 

I have an issue with a banner I integrated in a page (http://hostelsuites.com) if you go to the page you'll see a banner on the left side , called "Combo Andes". The problem I am encountering is that this banner is linking to inside pages, and it works all fine for me but does not on some other computers, although they are using the same explorer or firefox versions....

 

I have no idea as to what could trigger this type of error, any help would be muche welcome.

 

Some details that might help :

The link is winthin the flash movie

The code that brings the banner up depending on the chosen language is

 

<div class="subtitulo"><?= ucfirst($lang["combomendoza"]) ?></div>

 

 

 

Thank you very much in advance

Link to comment
Share on other sites

Hi, thanks for looking into this...

Apparently nothing happens, they just stay on the same page... I just don't get it and it's pretty difficult for me to spot the error as everything works fine for me and other people ... could be a cache issue ? Although I asked them to clear the cache....

Now probably the best solution would be to link the image directly within the php code, but I tried and it does not work, what I tried was

 

<div class="subtitulo"><a href="http://hostelsuites.com/combos:php?idioma=$idioma></a><?= ucfirst($lang["combomendoza"]) ?></div>

 

But it does not link... when rolling over the banner the browser shows where it should be linking fine but it is not clickeable....I must be missing something here ...

 

Thanks for your help

Link to comment
Share on other sites

<div class="subtitulo"><a href="http://hostelsuites.com/combos:php?idioma=$idioma></a><?= ucfirst($lang["combomendoza"]) ?></div>

should be

<div class="subtitulo"><a href="http://hostelsuites.com/combos.php?idioma=<?php echo $idioma; ?>" target="_blank"><?php echo ucfirst($lang["combomendoza"]) ?></a></div>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.