function readOnly(count){ }
Don't have an account?
Search for an answer or ask a question of the zone or Customer Support.
You need to sign in to do that
Sign in to start searching questions
Signup for a Developer Edition
Sign in to start a discussion
Hi,
How i rename Home tab in salesforce?
regards,
Sagar
There is no direct way to rename the home tab in salesforce.
You can rename the home tab from javascript.
Create a html area home component with following code
<script>
var gethometab=document.getElementById('home_Tab');
gethometab.getElementsByTagName("a")[0].setAttribute("title","test");
gethometab.getElementsByTagName("a")[0].innerHTML="test";
</script>
Add the home component in home page layout.
when I click on other tab of customer portal then name again changes to Home. please tell me the solution
Regards,
Sagar Pawar
Hi,
There is no direct way to rename the home tab in salesforce.
You can rename the home tab from javascript.
Create a html area home component with following code
<script>
var gethometab=document.getElementById('home_Tab');
gethometab.getElementsByTagName("a")[0].setAttribute("title","test");
gethometab.getElementsByTagName("a")[0].innerHTML="test";
</script>
Add the home component in home page layout.
All Answers
Hi,
There is no direct way to rename the home tab in salesforce.
You can rename the home tab from javascript.
Create a html area home component with following code
<script>
var gethometab=document.getElementById('home_Tab');
gethometab.getElementsByTagName("a")[0].setAttribute("title","test");
gethometab.getElementsByTagName("a")[0].innerHTML="test";
</script>
Add the home component in home page layout.
Hi,
when I click on other tab of customer portal then name again changes to Home. please tell me the solution
Regards,
Sagar Pawar
How to rename 'Home' tab in customer community?
https://www.w3schools.com/cssref/tryit.asp?filename=trycss_text-transform
this helped me to rename the home tab in community..
thank u