---
title: "Ascend – Remove Link Underline"
source: "https://docs.nexcess.com/software/kadence/ascend-remove-link-underline/"
description: "Part of the Ascend Theme styling includes an underline border on all links within the content area of a page. To remove this you can add this CSS to Theme Optio…"
vertical: "Software"
area: "Kadence"
date: "2021-07-20"
last_modified: "2026-07-06"
---

# Ascend – Remove Link Underline

Part of the Ascend Theme styling includes an underline border on all links within the content area of a page. To remove this you can add this CSS to Theme Options> Custom CSS:

```
[css].comment-content a:not(.button),
.entry-content p a:not(.button):not(.select2-choice):not([data-rel=lightbox]) {
border: 0;
}
[/css]
```

Side by side comparison:

[![](https://docs.nexcess.com/wp-content/uploads/2026/07/without_code-min-300x131-1.jpg)](https://docs.nexcess.com/wp-content/uploads/2026/07/without_code-min.jpg)Without code added

[![](https://docs.nexcess.com/wp-content/uploads/2026/07/with_code-min-300x131-1.jpg)](https://docs.nexcess.com/wp-content/uploads/2026/07/with_code-min.jpg)With code added
