Site Name: www.imagineprefectskin.com
If you look at the index page at the bottom and all pages there is a newsletter sign up section. Well that code cannot be native to RSD so I need an element to house the code. So what I thought I would do is use an element to keep the code and all the code to sign in and update MailChimp and all that stuff.
Here is the code:
<div class="row heading-mail-row">
<div class="coffee-span-12 heading-mail-row-column">
<h4 class="heading-mail-text"><span class="heading-mail-text-text">“Get Signed Up and Receive Special Promotions"<br></span>
</h4>
</div>
</div>
<div class="row heading-mail-fields-row">
<div class="coffee-span-12 heading-mail-fields-row-col coffee-480-span-12">
<span class="text-element heading-mail-label-text"><span class="heading-mail-label-text-text">Email</span>
</span><input value="" name="email-name" type="email" class="mail-email-field">
</div>
<div class="coffee-span-12 heading-mail-fields-row-col coffee-480-span-12"><button type="submit" class="submit-mail">Submit</button>
</div>
</div>
And the CSS would be handled by the main.css file. The problem is when I placed the code inside the element and then viewed it, and i saw nothing. Then i thought well let me place the HTML element underneath the section and then maybe I would see two of the same thing and nope. Nothing.
When I place this code inside an HTML element within the page and then view in the browser, I get nothing. it is not reading the HTML.
What gives?

- Marty