Posted by: pipRaptor - Tuesday, 3 May 2016 18:35:09 |
---|
This is a very simple trick to make uniform the CSS elements you want in your whole forum, independently form the theme you set You have only to put this couple of rows at the beginning of the DEFAULT.ASPX page, after the various IMPORT and REGISTER I set two font properties, but it's applicable to every CSS element You can play with very great numbers to see the effect [b]in the entire your forum[/b], and you can change back simply re-coding a couple of lines [code] ..... // this is only a reference to see where you must put your code <%@ Register TagPrefix="YAF" Assembly="YAF" Namespace="YAF" %> // you simply put an asterisk to include every CSS element // indeed since "C" stands for Cascade... this propagates the setting to your whole forum ..... [/code] |
Posted by: Ordinary Nimda - Wednesday, 4 May 2016 14:23:30 |
---|
This is good, for testing & development, but it might not be really efficient with respect to performance? |
Posted by: pipRaptor - Friday, 6 May 2016 17:21:29 |
---|
[quote=Ordinary Nimda;66987]This is good, for testing & development, but it might not be really efficient with respect to performance? [/quote] You are perfectly right! Indeed I called it a "trick" and I told to play with it... simply it may something interesting to know |