of all the pages in my website...they come from which php file?
also i wanna chage the color of the text join now, login on front page....besides the company logo....where should i chane them?
of all the pages in my website...they come from which php file? also i wanna chage the color of the text join now, login on front page....besides the company logo....where should i chane them? |
Join now/login can be changed via language keys. Go to Admin => Settings => Language Settings and do a search for the language keys you want changed. Edit and save.
title and metatag can be changed for each page by going into your dolphin root directory and locating the following:
$_page['header'] = _t("_Browse Profiles", $site['title']);
And make the adjustments to it. You can also install a meta tag mod to your site and handle meta content from the admin panel. Just hop over to expertzzz.com and take a look. Is it OKWeb that has that one? |
Looking for the file to change this for the home page? Which file (besides the header.html file) contains the primary data to change the title for home page? root > inc > file header.inc.php near the top in the line called title - Join now/login can be changed via language keys. Go to Admin => Settings => Language Settings and do a search for the language keys you want changed. Edit and save.
title and metatag can be changed for each page by going into your dolphin root directory and locating the following:
$_page['header'] = _t("_Browse Profiles", $site['title']); And make the adjustments to it. You can also install a meta tag mod to your site and handle meta content from the admin panel. Just hop over to expertzzz.com and take a look. Is it OKWeb that has that one? |
for the home page, open index.php in your dolphin root directory. at about line 66 it says $_page['header'] = $site['title']; Change that to $_page['header'] = 'WHAT YOU WANT META TITLE TO BE'; That should work. Happiness is a warm gun. |