Free Web Hosting Forum
Go Back   Free Web Hosting Forum > Website Building > Web Design and HTML
Reload this Page Main Menu LInks not working
Reply
 
Thread Tools Display Modes
(#1 (permalink))
Old
Junior Member
mdandrewsi is on a distinguished road
 
Posts: 3
Join Date: Jan 2012
Unhappy Main Menu LInks not working - 01-09-2012, 09:13 PM

My Main Menu is there but the links are not available.
Any Ideas?

My Template has {%menu_display%} but it is no no longer hyper linked. What should this be pointing to to look at all navigation links?
Reply With Quote
Sponsored Links
(#2 (permalink))
Old
mattl's Avatar
Junior Member
mattl is on a distinguished road
 
Posts: 27
Join Date: Jan 2012
Location: NS, Canada
Default 01-16-2012, 05:52 PM

Quote:
Originally Posted by mdandrewsi View Post
My Main Menu is there but the links are not available.
Any Ideas?

My Template has {%menu_display%} but it is no no longer hyper linked. What should this be pointing to to look at all navigation links?
Could you explain how your website was made?
Did you make it yourself and have your menu using php to include the links?
Was it made by some sort of generator??
Are there any error messages that you are getting?

I am assuming that since you said "My Template has {%menu_display%}..." it was probably a generator, So what one did you use?
I would like to be able to help but at this time the only website I found (connectchurchatl.org) seems to be have the menu that appears to be working.

Last edited by mattl; 01-16-2012 at 05:54 PM. Reason: found website after using a browser that would load properly.
Reply With Quote
(#3 (permalink))
Old
Junior Member
Airsoft Brothers is on a distinguished road
 
Posts: 4
Join Date: Jan 2012
Exclamation Same Problem - 01-17-2012, 08:00 PM

Hi,
I have had the same problem. I created a second menu, and when I added {%menu_display=2%} (or similar), and all the rest of the HTML to the template thing in public_HTML, both menus show on the website, but neither of them are hyperlinked. I rebuilt the website (again, using the Old Website Builder), but I have the same problem.

How do I get both menus hyperlinked ?

PLEASE HELP !!!

Thanks
Reply With Quote
(#4 (permalink))
Old
ShocK's Avatar
Senior Member
ShocK is on a distinguished road
 
Posts: 4,063
Join Date: Jul 2011
Location: UK
Default 01-17-2012, 08:07 PM

Don't know much about site builder, is there anything here that might help? - http://builder.000webhost.com/help/ under edit - hyperlink?
Reply With Quote
(#5 (permalink))
Old
mattl's Avatar
Junior Member
mattl is on a distinguished road
 
Posts: 27
Join Date: Jan 2012
Location: NS, Canada
Default 01-17-2012, 08:20 PM

Not sure how familiar you are with Dynamic Code.. But it sounds like the code that controls the hyper linking is broke.
I'm afraid I am also not that familiar with the site builder but I would take a look at the help Document that Shock has provided.

The tutorial part where it talks about "How to define dynamic menu" seems like it would be the best part to explain how the Link process work.

Only thing I can think of is that the document it is calling for the Link is not actually given a URL to be hyper linked with.
Edit:
Here is an example they have from that document showing how to have the links listed, if this helps at all:
Quote:
{%menu_start=1%}
- <a href="{%menu_href%}">{%menu_display%}</a><br>
{%menu_end=1%}


---
Matt L
1) Search the Forum first, Most questions have already been Answered & that's why there is a search function.
2) No luck? Try google. Most likely your answer can be found there
3) Still No luck? Ok Post a thread lets see what we can do

Last edited by mattl; 01-17-2012 at 08:23 PM. Reason: Adding example from document
Reply With Quote
(#6 (permalink))
Old
Junior Member
Airsoft Brothers is on a distinguished road
 
Posts: 4
Join Date: Jan 2012
Smile Help - 01-18-2012, 04:43 PM

Hi, here is my problem.
On the admin page to build my website, there are 2 menus.

On the website, only 1 menu shows up.

On File Manager -> public_HTML -> template contaminated.html, the dynamic code for the menu is:

<h2>Menu</h2>
<ul>
{%menu_start=1%}
<li><a href="{%menu_href%}">{%menu_display%}</a></li>
{%menu_end=1%}
</ul>

So, to make the second menu show up, I put this into the same file (template contaminated.html):

<h2>Menu</h2>
<ul>
{%menu_start=2%}
<li><a href="{%menu_href%}">{%menu_display%}</a></li>
{%menu_end=2%}
</ul>


By doing this, the second menu shows on my website, but neither of the menus are hyperlinked. Is the dynamic code I put in for the 2nd menu wrong ?

Thanks
Reply With Quote
(#7 (permalink))
Old
mattl's Avatar
Junior Member
mattl is on a distinguished road
 
Posts: 27
Join Date: Jan 2012
Location: NS, Canada
Default 01-18-2012, 05:11 PM

EDIT: See Post Below


---
Matt L
1) Search the Forum first, Most questions have already been Answered & that's why there is a search function.
2) No luck? Try google. Most likely your answer can be found there
3) Still No luck? Ok Post a thread lets see what we can do

Last edited by mattl; 01-18-2012 at 05:24 PM. Reason: Post No Longer Needed
Reply With Quote
(#8 (permalink))
Old
mattl's Avatar
Junior Member
mattl is on a distinguished road
 
Posts: 27
Join Date: Jan 2012
Location: NS, Canada
Default 01-18-2012, 05:24 PM

I created a site same template as you.
I edited the /public_html/template_contaminated.html file and just simply have my code like the following at the menu part:
HTML Code:
				<h2>Menu</h2>
				<ul>
					{%menu_start=1%}<li><a href="{%menu_href%}">{%menu_display%}</a></li>{%menu_end=1%}
				</ul>
                               <h2>Menu 2</h2>
				<ul>
					{%menu_start=2%}<li><a href="{%menu_href%}">{%menu_display%}</a></li>{%menu_end=2%}
				</ul>
And it work just fine, Honestly I cant see a difference in your code between mine and yours so if
So only thing I can think of is that your second menu you are trying to call doesn't exist, but that can't be correct because you said that it is appearing??
Only thing I can think of if the above doesn't apply is to try cleaning up your account, re install the template and try again cause it worked fine for me. so make sure you use the menu builder to create this second menu you are trying to call


---
Matt L
1) Search the Forum first, Most questions have already been Answered & that's why there is a search function.
2) No luck? Try google. Most likely your answer can be found there
3) Still No luck? Ok Post a thread lets see what we can do
Reply With Quote
(#9 (permalink))
Old
Junior Member
Airsoft Brothers is on a distinguished road
 
Posts: 4
Join Date: Jan 2012
Default 01-19-2012, 07:50 PM

The only difference is that instead of Menu 2, I put the menu name. Does that have any difference ?
Reply With Quote
(#10 (permalink))
Old
mattl's Avatar
Junior Member
mattl is on a distinguished road
 
Posts: 27
Join Date: Jan 2012
Location: NS, Canada
Default 01-19-2012, 08:51 PM

Hmm.. to be honest your problem absolutely has me lost..
The H2 Tag is just simply a heading tag so I dont see how that would affect it (that being said I called it a dozen different names for testing (some not even the word menu) and still didnt make a difference.)

what I did notice Is If I had it calling a Menu that did not exist (For example I only have Menu one created but trying to call Menu 2) it would just repeat Menu 1, But would not display properly (Styles were not being applied properly.)

But if I made it call menu 2 after I created it then it worked just fine.
so where yours is listing but not linking... i honestly have no Idea, only thing that I can think is that a corrupt file somewhere possibly.

I've included an image to clarify what I mean by a second menu. I am sorry that I am not able to be much help... But to be honest I am out of idea's at this point since I dont seem to be able to replicate your problem.

Only thing I can think of is trying reloading your account and re-install the template and see if that fix's it.
Other then that, Thats all I got. best of Luck.


---
Matt L
1) Search the Forum first, Most questions have already been Answered & that's why there is a search function.
2) No luck? Try google. Most likely your answer can be found there
3) Still No luck? Ok Post a thread lets see what we can do

Last edited by mattl; 01-19-2012 at 08:52 PM. Reason: Img Link didnt work first time
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off




Powered by vBulletin® Version 3.8.2
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.5.2
vBulletin Skin developed by: vBStyles.com