Jump to content

[solved] access smarty variable in css file?


xezus

Recommended Posts

Hi,

 

As far as I know, this is not possible !

 

But you can define a css style in a .tpl file using smarty variables

{assign var='MydivWidth' value='300'}
{assign var='MydivColor' value='ff0000'}

<style type="text/css">
.Mydiv {ldelim}
	width: {$MydivWidth}px;
	color: #{$MydivColor};
{rdelim}
</style>

 

Regards

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...