Cameron14:
Please can someone tell me how to add links to my 4 column footer menu (pink boutique template) I know how to hide links but I am unable to add any links (in the footer_menu_defines file). I know how to add links using the EZ settings but I want certain links under the other titles (for example "Contact Us" under the first column (named "Quick Links")

Allow me to introduce you to the developer's tool kit. It is a handy tool found on the admin page under the tools menu option. I personally tend to go over the top with my search and just use the lowest row of options in most cases. Anyways, working along the row that is applicable from where you want to get information type in say a key word or exact combination like "quick links" (without the quotes) and select whatever is next in the row and then eventually the search button.
In this case you are likely to receive at least one record that looks something like: define('ALL_CAP_WORDS','Quick Links');
And it may be that is the only thing returned. Well, from there you now would have the location of the language define for that text, you also have the variable (constant) name that is used to express that value. So now you use that information (ALL_CAP_WORDS) to then find where it is presented or manipulated.
Now, some such words "Quick Links" are generated by combining two words, for example, technically the Quick Links header should be "aware" of how many items are under it. If the answer is zero, then it really shouldn't be displayed at all, but the other three columns would have to be adjusted or be able to handle that if it were the case. If the answer is one, then it should be titled Quick Link, which could be generated either as a single phrase, or as a combination of Quick and Link. In a multi-language environment such as ZC, it is more likely that the two versions would each be a constant of their own, rather than combining two such constants in this situation of going from plural to singular. Anyways, the reason to state that is, the phrase Quick Links may not match a definition, but Quick may and Links may and they may both show up in the same file.
So, hopefully from this, you can now go fishing and feed yourself rather than just have a bite of a meal, though don't be afraid to come back and ask more.