简体   繁体   中英

there's a way who can help me to give all the items font-family and font-size joomla?

I am a begginer to joomla and I thank you in advance for your help. I have 400 items in the extension k2 of which I have to define the font-family and font-size, this could make it article by article through the wysiwyg do this but it would be boring and I would lose a lot of time ... there's a way who can help me to give all the items font-family and font-size?

Use CSS selectors to set defaults and overrides, for example:

* { font-family: serif; font-size: larger; }

as the first statement of the CSS file will set the default:

div div { font-family: sans-serif; font-size: initial; }

will override that for nested div elements.

References

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM