Remove underline link

  1. I want to remove underline all link in picture attachment (red number 1)


  2. I want to remove blank (red number 2) because is long



    How i config? please help me, thank you very much!



Hello, trunglk



Some code modifications are required to implement this feature. We would be happy to assist you in this matter within our technical support service. Please contact us via Customer Help Desk if you have support credits or an active support period.

In your styles.css file you should have:


a, a:visited, a:active, a:hover {
cursor: pointer;
text-decoration: underline;
}




I’d change it to:


a, a:visited, a:active {
cursor: pointer;
text-decoration: none;
}
a:hover {
cursor: pointer;
text-decoration: underline;
}




Hope that helps.



Brandon