I have a CSS template called global_css. It is rendering some css classes dynamically. Here’s a snippet to show what I’m referring to:
{exp:channel:entries channel="personal_blog" dynamic='off' disable="categories|member_data|pagination"}
.bio_header_{personal_ee_username} {
position: absolute;
top: 0;
left: 0;
width: 960px;
height: 270px;
background: url('{personal_header_image}') no-repeat 0 0;
}
{/exp:channel:entries}I’m generating this css class dynamically for each user. The above code works just fine on one site…but the actual EE tags are showing up on the client side on another site. Is there a setting I might be missing to ensure that the EE tags get parsed?