3215 Posts in 848 Topics by 811 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 1033 Views |
-
Using "IF" block to call specific CSS

28 January 2010 at 1:54pm Last edited: 28 January 2010 1:54pm
I have this in my main Page.ss, but I want to switch background depending on the layout using an if statement. Is this correct syntax? If not, what am I missing/doing wrong?
<% if $Layout = HomePage %>
<link href="themes/ofarm/css/homepage.css" rel="stylesheet" type="text/css" />
<% else %>
<link href="themes/ofarm/css/page.css" rel="stylesheet" type="text/css" />
<% end if %> -
Re: Using "IF" block to call specific CSS

28 January 2010 at 5:44pm
Couple notes - you don't need to use a $ when your inside the <% %> tags and $Layout can't be used for that sadly. You have to use ClassName or you can use URLSegment
<% if URLSegment = home %> or <% if ClassName = HomePage %> if you have made a custom HomePage class which you can use.
| 1033 Views | ||
|
Page:
1
|
Go to Top |


