 | [Solved] Does anyone know how to make... |  |
Posted: 04/30/2007 1:27 PM |
|
|
|
|
|
| Citation |
| Posts |
1332 |
| Word Cnt. |
86,126 |
| BDay |
Feb 11 |
| Sign |
Aquarius |
| Sex |
 |
|
|
|
Joined: Mar 31, 2007
Local time: 5:05 PM
Location: Birmingham, UK.
|

|
|
|
|
 |
a link load up another page without loading another browser up?  |
|
|
 |
 |
| Back to Top |
|
|
 | Re: Does anyone know how to make... |  |
Posted: 04/30/2007 4:24 PM |
|
|
|
|
|
| Site Admin |
| Posts |
30757 |
| Word Cnt. |
2,628,690 |
| BDay |
Jul 28 |
| Sign |
Leo |
| Sex |
 |
|
|
|
Joined: Sep 25, 2004
Local time: 12:05 PM
Location: St Pete, FL
|

|
|
|
|
 |
Usually the hyperlinks open pages in the same browser, if you have a good one that has tabbed browsing, or like in IE, it typically either opens a new window or opens the page in the current window, depending on the hyperlink settings. If the links are opening in another browser, that indicates that the current browser is not your default browser, so Windows is opening the default instead. So set your favorite browser to be the default and that problem should go away...
 |
|
|
 |
 |
| Back to Top |
|
|
 | Re: [Solved] Does anyone know how to make... |  |
Posted: 04/30/2007 4:32 PM |
|
|
|
|
|
| Citation |
| Posts |
1332 |
| Word Cnt. |
86,126 |
| BDay |
Feb 11 |
| Sign |
Aquarius |
| Sex |
 |
|
|
|
Joined: Mar 31, 2007
Local time: 5:05 PM
Location: Birmingham, UK.
|

|
|
|
|
 |
|
|
 |
 |
| Back to Top |
|
|
 | Re: Does anyone know how to make... |  |
Posted: 04/30/2007 5:22 PM |
|
|
|
|
|
| Site Admin |
| Posts |
49593 |
| Word Cnt. |
2,756,445 |
| BDay |
Apr 22 |
| Sign |
Taurus |
| Sex |
 |
|
|
|
Joined: Sep 25, 2004
Local time: 10:05 AM
Location: Texas
|

|
|
|
|
 |
I takes me to this page and it uses the same window.:
 |
|
|
 |
 |
| Back to Top |
|
|
 | Re: [Solved] Does anyone know how to make... |  |
Posted: 04/30/2007 5:54 PM |
|
|
|
|
|
| Citation |
| Posts |
1332 |
| Word Cnt. |
86,126 |
| BDay |
Feb 11 |
| Sign |
Aquarius |
| Sex |
 |
|
|
|
Joined: Mar 31, 2007
Local time: 5:05 PM
Location: Birmingham, UK.
|

|
|
|
|
 |
Hmm that’s strange because it doesn't for me. Clicking on the link loads another page up for me. Yet when clicking on the menu navigation links on the homepage it goes straight to the next page using the same browser  |
|
|
 |
 |
| Back to Top |
|
|
 | Re: Does anyone know how to make... |  |
Posted: 04/30/2007 10:23 PM |
|
|
|
|
|
| Site Admin |
| Posts |
30757 |
| Word Cnt. |
2,628,690 |
| BDay |
Jul 28 |
| Sign |
Leo |
| Sex |
 |
|
|
|
Joined: Sep 25, 2004
Local time: 12:05 PM
Location: St Pete, FL
|

|
|
|
|
 |
I really don't know if I understand the problem, so if I am way off, forgive me. The menu options on your main page should all open the same since the hyperlinks are designed exactly the same. You can add target code to control how the pages are opened though. Here is a short discussion on the use of target in your hyperlinks:
Attribute for <A ...> TARGET =
So in your s-inc/nav.php file, your menu options are listed. If you want to add a target in one of your hyperlink options, you could do something like this:
OPEN
s-inc/nav.php
FIND
| Code:
|
|
<a href="/links.php" title="My favourite links">Links</a>
|
REPLACE WITH
| Code:
|
|
<a href="/links.php" title="My favourite links" target="_blank">Links</a>
|
This would open the page in a new window. It should be in the same browser though...
FIND
| Code:
|
|
<a href="/links.php" title="My favourite links">Links</a>
|
REPLACE WITH
| Code:
|
|
<a href="/links.php" title="My favourite links" target="_self">Links</a>
|
This opens the page in the current browser window...
 |
|
|
 |
 |
| Back to Top |
|
|
 | Re: [Solved] Does anyone know how to make... |  |
Posted: 05/01/2007 5:32 AM |
|
|
|
|
|
| Citation |
| Posts |
1332 |
| Word Cnt. |
86,126 |
| BDay |
Feb 11 |
| Sign |
Aquarius |
| Sex |
 |
|
|
|
Joined: Mar 31, 2007
Local time: 5:05 PM
Location: Birmingham, UK.
|

|
|
|
|
 |
Thanks for that link but I’ve done it now.
The coding needed was this
| Code:
|
|
<p><A href="http://www.christopher-powell.co.uk/">Christopher-powell.co.uk</ A>
|
When clicking on the Christopher-Powell.co.uk link it takes you straight to the homepage now instead of loading up another browser  |
|
|
 |
 |
| Back to Top |
|
|
 | Re: Does anyone know how to make... |  |
Posted: 05/01/2007 1:48 PM |
|
|
|
|
|
| Site Admin |
| Posts |
30757 |
| Word Cnt. |
2,628,690 |
| BDay |
Jul 28 |
| Sign |
Leo |
| Sex |
 |
|
|
|
Joined: Sep 25, 2004
Local time: 12:05 PM
Location: St Pete, FL
|

|
|
|
|
 |
Good, other than the Links option, everything else seems to be working much better now...
 |
|
|
 |
 |
| Back to Top |
|
|
 | Information |  |
|