FAQ ID # 408 |
Text displayed when no carriers rate Last Update : 2019/09/26 |
Send FAQ by E-mail Print this FAQ |
Question / Issue |
How to change the text that is displayed in the event no carriers rate. |
Answer / Solution |
The text that is displayed on the website when no carriers rate can be hidden and/of changed by overriding the CSS. To hide and/or change the text:
NOTE: to overwrite the existing text, you need both parts of the code below for each sentence. For the Legacy System do the Following CSS to hide the default first sentence: .ErrorLabel
{
display: none;
} CSS to insert or add a custom first sentence:
.ErrorLabelOverride:before
{
content : "insert your text here";
}
CSS to hide the default second sentence: .AdditionalErrorLabel
{
display: none;
}
CSS to insert or add a custom second sentence: .AdditionalErrorLabelOverride:before
{
content : "insert your text here";
} For the New System add this info - Here is the css that will let them change what's displayed:
#pgContactMethod div.stepTitle { display:none }
#pgContactMethod > div.innerPage:after { content: "Your message goes here"; }
#pgContactMethod > div.innerPage > div.inputPanel { display: none; }
And if they want to change font size, color, etc, they can do that here:
#pgContactMethod > div.innerPage:after
NOTE: if you want this text to also appear when viewed in a mobile device, click on the Mobile tab and enter the same text above. |
Direct Link to This FAQ |
http://www.itcdataservices.com/support/ecmpfaq/?f=408 |
Tags |
Override text |