How to customize the style of the automatic internal links?
You can customize the style of the automatic internal links generated with Interlinks Manager with the following CSS selector:
a[data-ail]
Examples
The following CSS rule demonstrates how to make the automatic internal links bold:
a[data-ail]{
font-weight: bold !important;
}
This rule sets the red color for all the automatic internal links:
a[data-ail]{
color: red !important;
}
In this example the underline is applied to the automatic internal links:
a[data-ail]{
text-decoration: underline !important;
}
Additional Notes
Please consider what follows:
- You have to add the CSS rules in the style.css of the active WordPress theme or any other CSS file loaded on your website.
- To achieve the necessary CSS specificity we recommend the use of the
!important
directive. - You have to clear the browser cache to see your custom style applied to the automatic internal links.