I experienced the same problem as @Rogier
I wanted links in body text to be underlined. When I went to Design/More Styles/Text to set Links to be underlined, Themler applied the underline attribute GLOBALLY to ALL links. So links in all the Headings, Lists, Button, etc. got underlines, which is not what I want.
The attached image shows the Text flyout, with underline selected for Links. As you can see, the underline attribute is applied Globally.
My workaround was to put
p a:link {
text-decoration: underline;
}
in the Additional CSS field, and this applied underlines to only the body text as desired. I'm guessing that Themler is applying that attribute to a:link which makes it global.
I experienced the same problem as @Rogier
I wanted links in body text to be underlined. When I went to Design/More Styles/Text to set Links to be underlined, Themler applied the underline attribute GLOBALLY to ALL links. So links in all the Headings, Lists, Button, etc. got underlines, which is not what I want.
The attached image shows the Text flyout, with underline selected for Links. As you can see, the underline attribute is applied Globally.
My workaround was to put
p a:link {
text-decoration: underline;
}
in the Additional CSS field, and this applied underlines to only the body text as desired. I'm guessing that Themler is applying that attribute to a:link which makes it global.
Last edited 28 November 2016 by JakeBakerClam