Hi,
I want to remove the "about us" link from the footer of my site. Which file I need to edit? please help.
Hi, I want to remove the "about us" link from the footer of my site. Which file I need to edit? please help. |
You do this via the sql, open the sys_menu_bottom and remove the line for ID7 (About Us). Now open up ftp program and go to cache and delete the sys_menu_bottom.inc. Now it will be gone. This process is used to add to the footer as well, just add to the sys_menu_bottom table instead of deleting. |
Hi, Thanks a lot. The aboutus menu gone! Could you please tell me the reason of removing the file sys_menu_bottom.inc from the cache folder? If I add a new menu in the table, what should I do for the sys_menu_bottom.inc file? |
sys_menu_bottom.inc is a cached copy of the bottom menu. https://www.deanbassett.com |
Thanks much for the detailed reply. What should I do to make the first letter capital for all footer items? |
Thanks much for the detailed reply. What should I do to make the first letter capital for all footer items? The text is transformed to lowercase in the css file. If you don't want the case tansformed then edit
.bottomCopyright .bottomLinks {
text-transform:lowercase;
}
Comment it out. /*
.bottomCopyright .bottomLinks {
text-transform:lowercase;
}
*/
With the case transform off, the links to be as they appear in the language settings for it.If CSS caching is turned on, your may need to clear the cache to see the results. https://www.deanbassett.com |
To add to deano's post, you can also just change the text-transform to this in the same spot instead of commenting out:
text-transform:capitalize;
Chris
EDIT: Had to correct spelling on the word 'capitalize' (hooked on phonics worked for me)
Nothing to see here |
To add to deano's post, you can also just change the text-transform to this in the same spot instead of commenting out:
text-transform:capitlaize;
Chris
Oh yea, thats right. Ok. Scratch my suggestion. This one most likely would be better just in case some of the language keys are not properly cased. https://www.deanbassett.com |