Hi there,
You probably had this loads of times so apologies in advance.
Trying to add buttons to pages on our club website (www.pohas.co.uk), have managed ok to do pages located in root directory, however some pages are in sub directories and having a nightmare. can get the buttons on, but any page in a sub directory when for example you click the 'home' button it throws a 404 error as the button is targeted to go to home page in sub directory, when in fact 'home' is in root directory.
Not sure i explained that very well, but any 'newbie' help much appreciated.
Easy Button & Menu Maker V4
Re: Easy Button & Menu Maker V4
This is quite easy to fix. Instead of linking to "index.html" link to "/index.html" (notice the slash) and that will always lead to the root.
Blumentals Software Programmer
Re: Easy Button & Menu Maker V4
Thanks for the reply, but where do i change the link, ie, in what part of the process/file?
Re: Easy Button & Menu Maker V4
It can be either the links in EBMM:
or in your case since the menu has already been inserted in the site it might be easier to change the HTML code in the problem pages:
E.g. change <li title="Home"><a href="index.html"> to <li title="Home"><a href="/index.html"> (similarly for all menu links).
or in your case since the menu has already been inserted in the site it might be easier to change the HTML code in the problem pages:
E.g. change <li title="Home"><a href="index.html"> to <li title="Home"><a href="/index.html"> (similarly for all menu links).
Blumentals Software Programmer
Re: Easy Button & Menu Maker V4
Thanks very much!
Working fine now.
Working fine now.