being the adventurous type of person, I would like to have actinic generate larger fonts according to whether the user is viewing at 800px wide or 1024px wide
The reason for this is that the text on smaller screens looks awfully "bold"
I can handle the simple code to swap to the alternate style sheet - no probs, but Actinic generates part of the css file from variables - example:
so, is it simply a matter of
I realise that I am taking some of the auto-generation away from actinic, but heck, thats why they give us access to all those templates isn't it ??
any expert got any other methods ?
The reason for this is that the text on smaller screens looks awfully "bold"
I can handle the simple code to swap to the alternate style sheet - no probs, but Actinic generates part of the css file from variables - example:
Code:
.thinborder { border-top-width: 0px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: NETQUOTEVAR:PALBGCSS; border-right-color: NETQUOTEVAR:PALCOLOR3CSS; border-bottom-color: NETQUOTEVAR:PALCOLOR3CSS; border-left-color: NETQUOTEVAR:PALCOLOR3CSS; }
- setting the colours in the <design><colours...> options
- generating a preview page
- look / edit the generated code to suit the smaller resolution
- ensure the relevent Act_Primary.html reflects the changes (including the swap code)
- Copy the new butchered css sheets to the correct directories albeit under new names to prevent them from being overwritten
I realise that I am taking some of the auto-generation away from actinic, but heck, thats why they give us access to all those templates isn't it ??
any expert got any other methods ?
Comment