You can use custom code in the stylesheet in Skins/ Target Pages Content to hide various elements in the target portal.
Below is the custom code we are most commonly asked to provide.
HOME PAGE
Hide When do we need it by? and Whose action?
th:nth-child(3) {
display: none
}
th:nth-child(4) {
display: none
}
td:nth-child(3) {
display: none
}
td:nth-child(4) {
display: none
}
OR
th:nth-child(3), td:nth-child(3) {
display: none
}
th:nth-child(4), td:nth-child(4) {
display: none
}
OR
th:nth-child(3), td:nth-child(3), th:nth-child(4), td:nth-child(4) {
display: none
}
REPLACE PORTAL TEXT
#main .inner .progress-intro p {
display: none;
}
#main .inner .progress-intro:after {
content:"blah blah blah";
visibility: visible;
white-space: pre-wrap;
display: block;
}
REPLACE TEXT ON TARGET PORTAL
div#welcome-introduction{
visibility: hidden;
width: inherit;
}
div#welcome-introduction:after {
content:'Welcome to NowWeComply;
visibility: visible;
display: block;
position: absolute;
padding: 5px;
top: 2px;
white-space: pre-wrap;
}
RENAME TARGET PORTAL COMPLETE BUTTON
.panel-complete-button {
text-indent: -9999px;
line-height: 0;
}
.panel-complete-button::after {
content: "YOUR TEXT HERE";
text-indent: 0;
display: block;
line-height: initial;
}
table.outstanding th.docs {
width: 245px;
}
MY ACCOUNT
HIDE "My Account" tab
.account{
visibility: hidden;
}
HIDE text link on My Account tab
.see-amend-the-data-we-have-for-you-contact-details-etc {
display:none;
}
.see-amend-the-data-we-have-for-you-contact-details-etc{
visibility: hidden;
}
YOUR FILES AND DOCUMENTS
HIDE "Your Files and Documents" tab
.files{
visibility: hidden;
}
SEND US STUFF
HIDE "Send Us Stuff" tab
.send{
visibility: hidden;
}
GET IN TOUCH
HIDE "Call Us"
#call-us {
display: none
}
GENERAL
HIDE HELP ICONS
div.form-help {
display: none;
}
or
div.form-help {
visibility: hidden;
}
HIDE "Contact the Admin Team" on response pages
span.questions{
visibility: hidden;
}
HIDE LOGO
div#logo{
visibility: hidden;
}
We hope you find these useful and easy to implement but please contact support if you need any assistance.
Comments
0 comments
Please sign in to leave a comment.