-
1. Re: My hyperlinks won't work online. Help!?
Ken Binney Dec 2, 2014 3:19 AM (in response to trenholme90)Please post a link to your online page. Often, when you begin your development process, the demo menu is provided with an octothorpe (#) in place of the "real" target.
This serves as a null link until you replace it with the final link targer.
Are there any # you did not remove in your link code?
-
2. Re: My hyperlinks won't work online. Help!?
trenholme90 Dec 2, 2014 3:29 AM (in response to Ken Binney)If you click in this line: http://btccs.co.uk/services.php the links all work but when you click on home and then try to click on another link it comes up with the '#'. This says to me there is something wrong with the index page maybe? I have checked for any loose '#' in the code and there aren't any.
-
3. Re: My hyperlinks won't work online. Help!?
Ken Binney Dec 2, 2014 5:11 AM (in response to trenholme90)The links on your Services page are:
<div class="tabs">
<ul>
<li><a href="contact.php">Contact</a></li>
<li><a href="news.php">News</a></a></li>
<li><a href="testimonials.php">Testimonials</a></li>
<li><a href="services.php">Services</a></li>
<li><a href="product.php">Product</a></li>
<li><a href="index.php">Home</a></li>
</ul>
</div>
But the links on your home page are:
<div class="tabs">
<ul>
<li><a href="#">Contact</a></li>
<li><a href="#">News</a></li>
<li><a href="#">Testimonials</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Product</a></li>
<li><a href="#">Home</a></li>
</ul>
</div>
-
4. Re: My hyperlinks won't work online. Help!?
trenholme90 Dec 2, 2014 6:09 AM (in response to Ken Binney)It would appear that way but in my index.php document it has the correct links as the hyperlinks and not the '#'. Might btccs.co.uk be loading a different page rather than loading index.php?
-
5. Re: My hyperlinks won't work online. Help!?
Ken Binney Dec 2, 2014 7:06 AM (in response to trenholme90)Worth checking out. Look for another index (perhaps with a capital I rather lowercase i).
The home page that the server is delivering has these lines on the top:
<!doctype html>
<html>
<head>
While all the other pages start with:
<!doctype html>
<html><!-- InstanceBegin template="/Templates/index.dwt.php" codeOutsideHTMLIsLocked="false" -->
<head>
Hope that helps
-
6. Re: My hyperlinks won't work online. Help!?
trenholme90 Dec 2, 2014 7:10 AM (in response to trenholme90)Ahhhhhh sorted it. You were right in saying that the links were still '#' in the index.php. This was the case on my remote server but the not on the updated index.php file on dreamweaver so i just updated the index.php on the remote server. Thanks for your help Ken


