ENXF NET
Administrator
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P.S Member
S.V.I.P Member
V.I.P Member
Collaborate
Registered
- Joined
- Nov 13, 2018
- Messages
- 32,635
- Points
- 823
Reputation:
I'm writing an add-on and am using settings in an admin option to set a couple of style variables. I want to use those in a .less template.
Is it possible to do something like this?
CSS:
The only problem I see is that in templates, the { } brackets in CSS/LESS would probably conflict with trying to insert a variable in a template which also uses brackets (like
Read more
Continue reading...
Is it possible to do something like this?
CSS:
Code:
.my-style {
width: // my option from admin here //;
}
The only problem I see is that in templates, the { } brackets in CSS/LESS would probably conflict with trying to insert a variable in a template which also uses brackets (like
{$xf.options.myOptionHere} which is what I would do in a...Read more
Continue reading...