• Joomla
  • Customize joomla articles in newsletters

Hi,

That's documentation that belongs to v5.

You can add your css to your custom style sheet in the drag & drop editor.

5 days later

I'm trying to, but the styles are inline:

Any way to override these?
Any recent documentation?

Same problem I want to change defaut fonts - header style and float image right (not left) I can't find anywhere where I can set custom styles - styles seem to be inline for Joomla articles?

Hi,

You need to use css with a higher specifity to override inline css. In your drag & drop editor you right-click the element and click on inspect to find the right code to use.

Here you'll find an explanation of css specifity: https://dev.to/emmabostian/css-specificity-1kca

As an example, when you insert articles and you would like to change the color of the clickable article titles you use this code in your custom style sheet:

#acym__wysid__template h2 a, #acym__wysid__template h2 a:visited {color: #e8e8e8;}