Guided landing page with dynamic background image
In my landing page template I have a div #header2 which has a background image defined with a variable :
#header2{ background-image: url(${header2BackgroundImage});background-position: center;background-repeat: no-repeat;background-size: cover;padding:25px;margin:0;}
The problem is that this background image should be different based on a segment ( coreActivity ) . But I do not see this value in the dynamic content section.
How should I handle this background image problem?
Is there a way to get the URL in the dynamic section?