<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:clearspace="http://www.jivesoftware.com/xmlns/jive/rss" version="2.0">
  <channel>
    <title>Adobe Community : Unanswered Discussions - How to - HTML / CSS / JavaScript</title>
    <link>https://forums.adobe.com/community/business_catalyst/how_to-html-css-javascript?view=discussions&amp;filter=open</link>
    <description>Unanswered Discussion Threads in How to - HTML / CSS / JavaScript</description>
    <language>en</language>
    <pubDate>Wed, 05 Nov 2014 20:02:24 GMT</pubDate>
    <generator>Jive Engage 7.0.0.1  (http://jivesoftware.com/products/)</generator>
    <dc:date>2014-11-05T20:02:24Z</dc:date>
    <dc:language>en</dc:language>
    <item>
      <title>Bootstrap3/BC Menu dropdown conflict with module_photogallery</title>
      <link>https://forums.adobe.com/thread/1627710</link>
      <description>&lt;!-- [DocumentBodyStart:b83f2ec6-7c36-437b-b328-59651f7f01b8] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I'm building a site using Bootstrap3 framework, with BC Dynamic Menu (with jQuery courtesy Joe Watkins) for main navigation.&amp;nbsp; Dropdowns (click or hover) working beautifully until I add a photogallery module, then the dropdown links disappear&lt;strong&gt; on click&lt;/strong&gt;, which is a major problem on touchscreens.&amp;nbsp; I've removed all things piece-by-piece to determine the dropdown links disappear 100% of the time when a photogallery module is on the page, and work appropriately 100% of the time without a photogallery present (well, 1 exception - i'm seeing same issue on Layouts/OnlineShop/large_product.html).&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Does anyone have any recommendations to fix this conflict with my Menu Nav dropdown links and the photogallery module?&amp;nbsp; Really, really appreciate any suggestions.&amp;nbsp; Unfortunately, the site nav is rendered non-functional on touchscreens due to these disappearing dropdown link conflicts (only Home and Smile Gallery links are not dropdowns).&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;EXAMPLES&lt;/p&gt;&lt;p&gt;Here are 3 examples of pages with a photogallery/dropdown conflict on click.&amp;nbsp; To test issue, click the main nav dropdown links (e.g. "Locations, Treatment, etc":&lt;/p&gt;&lt;p&gt;&lt;a class="jive-link-external-small" href="http://www.meyerdanabraces.com/smile-gallery.html" rel="nofollow"&gt;Smile Gallery&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;a class="jive-link-external-small" href="http://www.meyerdanabraces.com/locations/rapidcity-sd" rel="nofollow"&gt;Rapid City, SD&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;a class="jive-link-external-small" href="http://www.meyerdanabraces.com/locations/spearfish-sd" rel="nofollow"&gt;Spearfish, SD&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I'm right in the middle of transitioning this site to the responsive framework, so not all links will work. Here are 3 examples of Nav links working properly on click (no photogallery module):&lt;/p&gt;&lt;p&gt;&lt;a class="jive-link-external-small" href="http://www.meyerdanabraces.com/results-before-after.html" rel="nofollow"&gt;Results - Before &amp;amp; After&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;a class="jive-link-external-small" href="http://www.meyerdanabraces.com/evaluation.html" rel="nofollow"&gt;Evaluation&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;a class="jive-link-external-small" href="http://www.meyerdanabraces.com/smile-for-a-lifetime.html" rel="nofollow"&gt;Smile For A Lifetime&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;REFERENCE&lt;/p&gt;&lt;p&gt;I do not understand jQuery very well, I've pieced together what I could to make it all work.&amp;nbsp; Here are the 2 scripts I use to get the BC Menu to work:&amp;nbsp; &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;// - - - - -&amp;nbsp; Dropdown Menu v2 - JOE WATKINS.IO Dropdown Menu Toggle - - - - - - - - - - -&lt;/p&gt;&lt;p&gt;dropdownNavTweak : function(){&lt;/p&gt;&lt;p&gt;var $navContainer = $(".nav"),&lt;/p&gt;&lt;p&gt;&amp;nbsp; $dropdownItems = $navContainer.find("li.dropdown");&lt;/p&gt;&lt;p&gt;&amp;nbsp; $dropdownItems.each(function(){&lt;/p&gt;&lt;p&gt;&amp;nbsp; var $parentItem = $(this).find("a:first");&lt;/p&gt;&lt;p&gt;&amp;nbsp; $parentItem.addClass("dropdown-toggle").attr("data-toggle","dropdown").append(" &amp;lt;em class='icon-caret-down'&amp;gt;&amp;lt;/em&amp;gt;");&lt;/p&gt;&lt;p&gt;&amp;nbsp; $(this).children("ul").removeClass().addClass("dropdown-menu");&lt;/p&gt;&lt;p&gt;&amp;nbsp; $dropdownItems.show();&amp;nbsp; // shows dropdown images to prevent flicker - use CSS to hide " .nav li.dropdown {display:none;}" or ".navbar-nav li.dropdown {display:none;}" or&amp;nbsp; ".navbarMinor-nav li.dropdown {display:none;}"&lt;/p&gt;&lt;p&gt;&amp;nbsp; });&lt;/p&gt;&lt;p&gt;},&amp;nbsp; // end dropdownNavTweak&amp;nbsp; (Comma needed if others follow}&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;... and ...&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 10pt; line-height: 1.5em;"&gt;//////- -MENU- ////////&amp;nbsp; &lt;/span&gt;&lt;/p&gt;&lt;p&gt;jQuery(document).ready(function ($) {&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; jQuery('.navbar .dropdown').hover(function() {&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; jQuery(this).addClass('extra-nav-class').find('.dropdown-menu').first().stop(true, true).delay(200).slideDown();&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }, function() {&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var na = $(this);&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (jQuery('.spanFloatLeftIfMobile').css('float') == "none") {&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; na.find('.dropdown-menu').first().stop(true, true).delay(500).slideUp('fast', function(){ na.removeClass('extra-nav-class') })&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; });&lt;/p&gt;&lt;p&gt;});&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:b83f2ec6-7c36-437b-b328-59651f7f01b8] --&gt;&lt;img src='/beacon?t=1415884434204' /&gt;</description>
      <pubDate>Wed, 05 Nov 2014 16:56:25 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1627710</guid>
      <dc:date>2014-11-05T16:56:25Z</dc:date>
      <clearspace:dateToText>1 week 17 hours ago</clearspace:dateToText>
      <clearspace:messageCount>1</clearspace:messageCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Hide background image on mobile device</title>
      <link>https://forums.adobe.com/thread/1625956</link>
      <description>&lt;!-- [DocumentBodyStart:5d5d0410-ef18-4fe8-942a-b188f40adc2a] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi all&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I have a responsive site and I have a background image in my services page(s)&lt;/p&gt;&lt;p&gt;eg&lt;/p&gt;&lt;p&gt;&lt;a class="jive-link-external-small" href="http://nicholsonssolicitors.davidcurran.com.au/about/services/Commercial" rel="nofollow"&gt;http://nicholsonssolicitors.davidcurran.com.au/about/services/Commercial&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;All looks fine on desktops and laptops, but when view on a mobile phone, the image displays behind the page content which doesn't look very nice. Is there a way to hide this background image on mobile devices only? i tried this below in my screen.css file, but no luck.&lt;/p&gt;&lt;p&gt;@media (max-width : 480px) {&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; body.custom-background {&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; background-image: none;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Or another workaround perhaps?......&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks&lt;/p&gt;&lt;p&gt;DC&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:5d5d0410-ef18-4fe8-942a-b188f40adc2a] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">css hide image</category>
      <pubDate>Mon, 03 Nov 2014 22:54:08 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1625956</guid>
      <dc:date>2014-11-03T22:54:08Z</dc:date>
      <clearspace:dateToText>1 week 3 days ago</clearspace:dateToText>
      <clearspace:messageCount>1</clearspace:messageCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Smaller banner/header size</title>
      <link>https://forums.adobe.com/thread/1624208</link>
      <description>&lt;!-- [DocumentBodyStart:2fa7daa4-c433-4c4c-98bd-e8c8be0d188b] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I need to make the header/banner smaller on my website.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;a class="jive-link-external-small" href="https://ngaitahustore.worldsecuresystems.com/" rel="nofollow"&gt;https://ngaitahustore.worldsecuresystems.com/&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I cannot work out where I would do this. Is anyone able to please help me?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks in advance&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:2fa7daa4-c433-4c4c-98bd-e8c8be0d188b] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">help</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">html</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">css</category>
      <pubDate>Sat, 01 Nov 2014 16:55:07 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1624208</guid>
      <dc:date>2014-11-01T16:55:07Z</dc:date>
      <clearspace:dateToText>1 week 5 days ago</clearspace:dateToText>
      <clearspace:messageCount>1</clearspace:messageCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>custom blog list/post layout</title>
      <link>https://forums.adobe.com/thread/1623995</link>
      <description>&lt;!-- [DocumentBodyStart:2845d0a6-ad8b-4f66-9b5d-0f265efeef00] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Inside blog posts, have anyone tried to move a body image position with js to place it on top, followed by post&amp;acute;s title, post&amp;acute;s text body ?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Is the only possible solution that I found to solve blogs layout since there is no way to create a custom image filed within blog.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:2845d0a6-ad8b-4f66-9b5d-0f265efeef00] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">blog formatting</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">blog_template</category>
      <pubDate>Sat, 01 Nov 2014 07:16:26 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1623995</guid>
      <dc:date>2014-11-01T07:16:26Z</dc:date>
      <clearspace:dateToText>1 week 3 days ago</clearspace:dateToText>
      <clearspace:messageCount>5</clearspace:messageCount>
      <clearspace:replyCount>4</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Showing and hiding dropdowns on product page, based on selected values</title>
      <link>https://forums.adobe.com/thread/1621368</link>
      <description>&lt;!-- [DocumentBodyStart:055683fd-3102-4a38-9f0f-2310b22081d6] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hello.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I would like my product page to show different subsequent dropdowns based on individual dropdown values. &lt;/p&gt;&lt;p&gt;&lt;br/&gt;I've managed to achieve this via JavaScript, but I do not like how it works.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;As far as I can tell, there is no proper identifier for each individual dropdown to determine which one it is, so all I can do at the moment is to rely on their order in the DOM, which is bad and makes it difficult for me to create a solution that would work for all products.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;For instance, if the following is a single attribute:&lt;/p&gt;&lt;p&gt;&amp;lt;div class="catProductAttributeGroup" style="display: none;"&amp;gt;&amp;lt;div class="catProdAttributeTitle"&amp;gt;Metallic Foiling&amp;lt;/div&amp;gt;&amp;lt;div class="catProdAttributeItem"&amp;gt;&amp;lt;select&amp;gt;&amp;lt;option value=""&amp;gt;-- Please select --&amp;lt;/option&amp;gt;&amp;lt;option value="6051720"&amp;gt;Not required &amp;lt;/option&amp;gt;&amp;lt;option value="6051721"&amp;gt;Foil ONE side + &amp;pound;45&amp;lt;/option&amp;gt;&amp;lt;option value="6051722"&amp;gt;Foiling BOTH sides + &amp;pound;75&amp;lt;/option&amp;gt;&amp;lt;/select&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I would like the outer-most div to have some sort of html attribute that holds the product attribute id. Something like, data-attribute-id="XXXXXXX". Is that possible?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Here's what I have up to this point:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I use {tag_attributes_json}, {tag_product_json} and {tag_currency} to get these values into javascript on page load, so I can use them later.&lt;/p&gt;&lt;p&gt;&lt;br/&gt;Then, I hook to change events of the drodpowns I have and then toggle their visibility based on which ones are selected. I rely on the jequery ':eq(n)' selector to achieve this, which I do not like. Is there an option for the {tag_attributes} helper which would make it add some extra information (such as attribute ID on the dropdown) on the generated HTML?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;All of this works initially, but If I then 'Add to cart', the product element get's ajax-reloaded and the events are suddenly unhooked, so it doesn't work anymore. For that one, there are two options:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;1. I could hook to an event that triggers once the product has been added to cart and the page is ready again. &lt;strong&gt;Is there such an event?&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;2. I could implement my own add to cart using bcInternals.shop.addToCart. I tried doing this, but I have two problems with it.&lt;/p&gt;&lt;p style="padding-left: 30px;"&gt;a. addToCart seems to add my selection twice, for some reason.&lt;strong&gt; Any ideas what I might be doing wrong?&lt;/strong&gt;&lt;/p&gt;&lt;p style="padding-left: 30px;"&gt;b. the cart info in&amp;nbsp; the top right corner doesn't refresh. it seems it tries to refresh, but there's some sort of access error in the script. This part is not yet fully added to the page, but there's a function that would do the adding to cart at the bottom of the bigger script block. &lt;strong&gt;Am I using the built in addToCart function incorrectly?&lt;/strong&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px; padding-left: 30px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;This is the page I have the partially implemented functionality added on:&lt;/p&gt;&lt;p&gt;&lt;a class="jive-link-external-small" href="http://www.afterhourscreativestudio.com/business-cards/matt-laminated-business-cards" rel="nofollow"&gt;Matt Laminated Business Cards&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;The scripts are currently embedded inside the HTML. Once I have it properly implemented, I'd like to extract it into a separate file. Search for "&lt;span style="color: #222222; font-family: Consolas, 'Lucida Console', monospace; font-size: 12px;"&gt;$productAttributesElement" &lt;span style="font-family: arial, helvetica, sans-serif;"&gt;to find the block with the functionality and for&lt;/span&gt; "productInfo" &lt;span style="font-family: arial, helvetica, sans-serif;"&gt;to find the part where I store the product data with the _json tags.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:055683fd-3102-4a38-9f0f-2310b22081d6] --&gt;</description>
      <pubDate>Wed, 29 Oct 2014 13:14:20 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1621368</guid>
      <dc:date>2014-10-29T13:14:20Z</dc:date>
      <clearspace:dateToText>19 hours 2 minutes ago</clearspace:dateToText>
      <clearspace:messageCount>3</clearspace:messageCount>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>FlexNav Help</title>
      <link>https://forums.adobe.com/thread/1610167</link>
      <description>&lt;!-- [DocumentBodyStart:697ac1ce-89c3-4dcd-8b65-0444206fa974] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hey everyone. I am using FlexNav on a number of responsive sites, for the menu(in BC and elsewhere). It works great for multi-level navigation in a responsive design. An issue has recently been brought to my attention however.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Take this site as an example: &lt;a class="jive-link-external-small" href="http://sunsweetuk.wsiefusion.net/" rel="nofollow"&gt;Sunsweet&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;If you size the width down to 1000px you can see the menu switch to the flyout style. It works and everything, but you have to click twice on any of the arrows to get to as page's subpages. And if you are currently on a page, say Resources, and try clicking its arrow for the sub-menu, it will not pop out.&lt;br/&gt; &lt;br/&gt;Any help with this would be much appreciated. Thanks.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:697ac1ce-89c3-4dcd-8b65-0444206fa974] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">javascript</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">menu</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">flexnav</category>
      <pubDate>Fri, 17 Oct 2014 13:28:57 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1610167</guid>
      <dc:date>2014-10-17T13:28:57Z</dc:date>
      <clearspace:dateToText>3 weeks 6 days ago</clearspace:dateToText>
      <clearspace:messageCount>1</clearspace:messageCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Why are social links different on desktop vs. mobile versions of my site?</title>
      <link>https://forums.adobe.com/thread/1609801</link>
      <description>&lt;!-- [DocumentBodyStart:c1b5c0f0-1ac6-45a8-8402-120020d39014] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;&lt;span style="color: #2b2e2f; font-family: 'Lucida Grande', 'Lucida Sans Unicode', 'Lucida Sans', Verdana, Tahoma, sans-serif; font-size: 14px;"&gt;The Facebook and Twitter buttons show up alongside the Favorite button &lt;/span&gt;&lt;span style="color: #2b2e2f; font-family: 'Lucida Grande', 'Lucida Sans Unicode', 'Lucida Sans', Verdana, Tahoma, sans-serif; font-size: 14px; line-height: 1.5em;"&gt;on the desktop version of my site, but not on the phone version of the &lt;/span&gt;&lt;span style="color: #2b2e2f; font-family: 'Lucida Grande', 'Lucida Sans Unicode', 'Lucida Sans', Verdana, Tahoma, sans-serif; font-size: 14px; line-height: 1.5em;"&gt;site, and I can't find the place to correct this. Thoughts? Desktop screenshot of sample product vs Mobile screenshot of same product below. &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #2b2e2f; font-family: 'Lucida Grande', 'Lucida Sans Unicode', 'Lucida Sans', Verdana, Tahoma, sans-serif; font-size: 14px;"&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #2b2e2f; font-family: 'Lucida Grande', 'Lucida Sans Unicode', 'Lucida Sans', Verdana, Tahoma, sans-serif; font-size: 14px;"&gt;&lt;a href="https://forums.adobe.com/servlet/JiveServlet/showImage/2-6838382-685192/Screen+Shot+2014-10-16+at+7.07.34+PM.png"&gt;&lt;img alt="Screen Shot 2014-10-16 at 7.07.34 PM.png" class="jive-image image-1" height="470" src="https://forums.adobe.com/servlet/JiveServlet/downloadImage/2-6838382-685192/Screen+Shot+2014-10-16+at+7.07.34+PM.png" style="height: 376px; width: 620px;" width="775"/&gt;&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #2b2e2f; font-family: 'Lucida Grande', 'Lucida Sans Unicode', 'Lucida Sans', Verdana, Tahoma, sans-serif; font-size: 14px;"&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #2b2e2f; font-family: 'Lucida Grande', 'Lucida Sans Unicode', 'Lucida Sans', Verdana, Tahoma, sans-serif; font-size: 14px;"&gt;&lt;a href="https://forums.adobe.com/servlet/JiveServlet/showImage/2-6838382-685247/IMG_6278.PNG"&gt;&lt;img alt="IMG_6278.PNG" class="jive-image image-2" height="900" src="https://forums.adobe.com/servlet/JiveServlet/downloadImage/2-6838382-685247/507-900/IMG_6278.PNG" style="height: 1101px; width: 620px;" width="507"/&gt;&lt;/a&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:c1b5c0f0-1ac6-45a8-8402-120020d39014] --&gt;</description>
      <pubDate>Fri, 17 Oct 2014 02:09:03 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1609801</guid>
      <dc:date>2014-10-17T02:09:03Z</dc:date>
      <clearspace:dateToText>3 weeks 6 days ago</clearspace:dateToText>
      <clearspace:messageCount>1</clearspace:messageCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>can ANYONE please help with coding query?</title>
      <link>https://forums.adobe.com/thread/1605135</link>
      <description>&lt;!-- [DocumentBodyStart:61c2ebe2-697b-4a9c-9f53-a9a74f7d73d9] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Im currently setting a website up in Adobe Muse/BC - Im not a developer at all!..but a designer and really like this software. However ive come across whats probably quite a simple problem - i just need to put some the module output from my web app over an image on template page but i dont know how to do it.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;The page is here:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;a class="jive-link-external-small" href="http://www.paulsuttontestsite.co.uk/rehomedogs/latest" rel="nofollow"&gt;latest&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;The text and image im moving (this is web app outputt) is inserted into the page coding as:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;{tag_pagecontent}&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;This is a module that Adobe BC is placing on the page from my web app.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Ive done images to explain this far more clearly:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;a class="jive-link-external-small" href="http://www.paulsuttontestsite.co.uk/test.SHOT1.png" rel="nofollow"&gt;http://www.paulsuttontestsite.co.uk/test.SHOT1.png&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;a class="jive-link-external-small" href="http://www.paulsuttontestsite.co.uk/test.SHOT2.png" rel="nofollow"&gt;http://www.paulsuttontestsite.co.uk/test.SHOT2.png&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Many thanks in advance to anyone who is kind enough to offer their time in helping me.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Paul&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:61c2ebe2-697b-4a9c-9f53-a9a74f7d73d9] --&gt;</description>
      <pubDate>Wed, 15 Oct 2014 12:00:06 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1605135</guid>
      <dc:date>2014-10-15T12:00:06Z</dc:date>
      <clearspace:dateToText>1 month 1 day from now</clearspace:dateToText>
      <clearspace:messageCount>1</clearspace:messageCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Incrementing product count in "add to cart" input field</title>
      <link>https://forums.adobe.com/thread/1605039</link>
      <description>&lt;!-- [DocumentBodyStart:7c4bd799-9ff6-49d1-a513-622176541f71] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I want to add a couple of buttons near the "add to cart" quantity input field (which you can normally use to write a number within and select the quantity for the product you want to buy), say a "+" and a "-" button, to increment or decrement the number within the field. This would be really simple in javascript, but how can I access the DOM at that input field level? It seems I can not access the input field in {tag_addtocartinputfield}.&lt;/p&gt;&lt;p&gt;Is there a way to achieve it, or a sort of workaround?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:7c4bd799-9ff6-49d1-a513-622176541f71] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">input field</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">add to cart</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">{tag_addtocartinputfield}</category>
      <pubDate>Wed, 15 Oct 2014 09:47:44 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1605039</guid>
      <dc:date>2014-10-15T09:47:44Z</dc:date>
      <clearspace:dateToText>1 month 1 day from now</clearspace:dateToText>
      <clearspace:messageCount>1</clearspace:messageCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Help with incorrect menu navigation when returning web app detail layout</title>
      <link>https://forums.adobe.com/thread/1601318</link>
      <description>&lt;!-- [DocumentBodyStart:1f744988-c02f-4760-b762-95901b6a2c00] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Ive managed to sort out most of my problems with my web app - however now the main problem is this:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;My website is: www.paulsuttontetstsite.co.uk&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;1. My web app has the url /rehomedogs, so when the results are listed it displays: www.paulsuttontestsite.co.uk/rehomedogs/(name of dog)&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;However because the menu has been generated in Muse...its now incorrect on this page as clicking on home is trying to automically link to www.paulsuttontestsite.co.uk/rehomedogs/index...rather than www.paulsuttontestsite.co.uk/index&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Please can someone tell me which is the best way to go about changing the navigation on the menu?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I havent had any luck with questions on these forums unfortunately&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thankyou if anyone can help out&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Paul&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:1f744988-c02f-4760-b762-95901b6a2c00] --&gt;</description>
      <pubDate>Sun, 12 Oct 2014 21:11:20 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1601318</guid>
      <dc:date>2014-10-12T21:11:20Z</dc:date>
      <clearspace:dateToText>1 month 1 day ago</clearspace:dateToText>
      <clearspace:messageCount>1</clearspace:messageCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Creating an email in GoLive CS2</title>
      <link>https://forums.adobe.com/thread/1598694</link>
      <description>&lt;!-- [DocumentBodyStart:55c53fe4-5667-4ea6-961d-af683a4a341b] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Using GoLive CS2 I am creating an email. It is html text on top of an image. Outlook separates the two and displays the text below the image instead of layered on top. How can I sort this?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:55c53fe4-5667-4ea6-961d-af683a4a341b] --&gt;</description>
      <pubDate>Thu, 09 Oct 2014 16:05:13 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1598694</guid>
      <dc:date>2014-10-09T16:05:13Z</dc:date>
      <clearspace:dateToText>1 month 4 days ago</clearspace:dateToText>
      <clearspace:messageCount>1</clearspace:messageCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Changing product images via Dropdown (JScript)</title>
      <link>https://forums.adobe.com/thread/1596660</link>
      <description>&lt;!-- [DocumentBodyStart:738c5b4f-8f41-44de-99db-dc6809940a08] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;&lt;span style="font-size: 12pt;"&gt;Hi - I am developing a clothing store. I have several products that have different colour options - I want the product image to change as the user selects the various colour options via the drop down menu in Business Catalyst - I've been told this can be done with Javascript... can anyone help! ? &lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:738c5b4f-8f41-44de-99db-dc6809940a08] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">javascript</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">e-commerce</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">product images</category>
      <pubDate>Tue, 07 Oct 2014 22:39:50 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1596660</guid>
      <dc:date>2014-10-07T22:39:50Z</dc:date>
      <clearspace:dateToText>1 month 6 days ago</clearspace:dateToText>
      <clearspace:messageCount>1</clearspace:messageCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Help fixing sidebar border in page template</title>
      <link>https://forums.adobe.com/thread/1587736</link>
      <description>&lt;!-- [DocumentBodyStart:27faeae2-2697-49b2-94c5-0752917b0eff] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I have recently added a blog to a website: www.mindsaligned.com.au/into-minds. I wanted the blog to have a sidebar similar to other pages on the site, so I just copied a page template from a page that has a sidebar and renamed the template "Blog Template". I've assigned the blog template to the actual blog and everything looks great except for one issue...&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;The sidebar (the area that contains "categories", "recent posts", etc) is meant to have a left border going all the way up the body of the page (just like it is on this page: www.mindsaligned.com.au/events), however, you'll notice on the blog, the left border is only showing up a little bit toward the bottom of the page body.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;a href="https://forums.adobe.com/servlet/JiveServlet/showImage/2-6772406-677570/2014-09-29_1628.png"&gt;&lt;img alt="2014-09-29_1628.png" class="jive-image image-1" height="338" src="https://forums.adobe.com/servlet/JiveServlet/downloadImage/2-6772406-677570/900-338/2014-09-29_1628.png" style="height: 233px; width: 620px;" width="900"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I inspected the element using Firebug and noticed that the entire sidebar section (possibly div?) seems to have shifted down on the page, hence, the left border moving down as well. I went into the page template I created for this page to see if I could find the issue in the HTML. This is what the HTML looks like for that section:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;lt;div id="main"&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;div class="main-holder"&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;div class="main-frame"&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;div class="main-inner"&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;div class="main-inner2"&amp;gt;{tag_pagecontent}&lt;/p&gt;&lt;p&gt;&amp;lt;div class="sidebar"&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;/div&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;/div&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;/div&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;/div&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;/div&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;/div&amp;gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I tried moving the "{tag_pagecontent}" tag after the first closing "&amp;lt;/div&amp;gt;" tag and that seems to solve the border issue, but it creates another issue where the sidebar links no longer work (I can't even highlight any of the text in the sidebar with my cursor).&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Can anyone tell me what I'm doing wrong and how I can fix this issue? I have basic knowledge of HTML and CSS so if you have a solution, please simplify for me as best as you can in your responses.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks!&lt;/p&gt;&lt;p&gt;Nicole&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:27faeae2-2697-49b2-94c5-0752917b0eff] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">blog</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">html</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">template</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">border</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">css</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">tag</category>
      <pubDate>Mon, 29 Sep 2014 06:33:54 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1587736</guid>
      <dc:date>2014-09-29T06:33:54Z</dc:date>
      <clearspace:dateToText>1 month 2 weeks ago</clearspace:dateToText>
      <clearspace:messageCount>1</clearspace:messageCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Help with drop down menu and border on images</title>
      <link>https://forums.adobe.com/thread/1578587</link>
      <description>&lt;!-- [DocumentBodyStart:a7f04645-0dd2-43bc-95b4-8a3feb913fe0] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p style="font-family: 'Lucida Sans Unicode','Lucida Grande','Tahoma',Verdana,sans-serif; margin-top: 15px; margin-bottom: 15px; font-size: 14px; color: #2b2e2f;"&gt;How do you slow down the drop down menu? When we hover over it and then try to go down to a sub page it goes away. &lt;/p&gt;&lt;p style="font-family: 'Lucida Sans Unicode','Lucida Grande','Tahoma',Verdana,sans-serif; margin-top: 15px; margin-bottom: 15px; font-size: 14px; color: #2b2e2f;"&gt;Also, I need help with getting a white border off images in the cart, I'm assuming its in the css style. I just don't know where. I am not really familiar with code. I know I have to change it to padding: 0px;&amp;nbsp; &lt;/p&gt;&lt;p style="font-family: 'Lucida Sans Unicode','Lucida Grande','Tahoma',Verdana,sans-serif; margin-top: 15px; margin-bottom: 15px; font-size: 14px; color: #2b2e2f;"&gt;Thank you&amp;nbsp; &lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:a7f04645-0dd2-43bc-95b4-8a3feb913fe0] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">css.</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">drop down menu</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">border around graphic</category>
      <pubDate>Thu, 18 Sep 2014 17:59:02 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1578587</guid>
      <dc:date>2014-09-18T17:59:02Z</dc:date>
      <clearspace:dateToText>1 month 3 weeks ago</clearspace:dateToText>
      <clearspace:messageCount>10</clearspace:messageCount>
      <clearspace:replyCount>9</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Turning HTML image into PNG</title>
      <link>https://forums.adobe.com/thread/1572381</link>
      <description>&lt;!-- [DocumentBodyStart:4ee9f66b-fff6-4f7d-a43d-1972add8e0a8] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi,&lt;/p&gt;&lt;p&gt;I don't think this will work but before I give up entirely I decided that I should ask people who would know more than me. I created a HTML image through work's photoshop cs4 to be uploaded onto our Linkedin pages' hero image. However, LinkedIn does not support html images but it does support png. Is there a way that I can convert the html file into png and still make it clickable?&lt;/p&gt;&lt;p&gt;I hope this makes sense&lt;/p&gt;&lt;p&gt;Thanks,&lt;/p&gt;&lt;p&gt;Nash&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:4ee9f66b-fff6-4f7d-a43d-1972add8e0a8] --&gt;</description>
      <pubDate>Thu, 11 Sep 2014 14:11:56 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1572381</guid>
      <dc:date>2014-09-11T14:11:56Z</dc:date>
      <clearspace:dateToText>2 months 2 days ago</clearspace:dateToText>
      <clearspace:messageCount>1</clearspace:messageCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>In-content Editor image keeping ?action=thumbnail</title>
      <link>https://forums.adobe.com/thread/1569990</link>
      <description>&lt;!-- [DocumentBodyStart:9c0dfc61-3dee-496f-90d7-e6496f5864d4] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hello all,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I've been working on a few BC projects now and found the '?action=thumbnail&amp;amp;amp;width=600&amp;amp;amp;height=300&amp;amp;amp;algorithm=fill_proportional' that you can add onto images really useful in helping keep site design - mainly it means clients do not need to upload images with exact dimensions to keep things consistent.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;However, when you add the In-content Editor attribute 'ice:editable="image"' and replace the image via the front end Edit screen the '?action=thumbnail&amp;amp;amp;width=600&amp;amp;amp;height=300&amp;amp;amp;algorithm=fill_proportional' will be removed from the image's path and therefore break design / consistency. Is there anyway to stop this from happening?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Regards,&lt;br/&gt;Mat&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:9c0dfc61-3dee-496f-90d7-e6496f5864d4] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">images;</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">in-context editor</category>
      <pubDate>Tue, 09 Sep 2014 11:55:39 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1569990</guid>
      <dc:date>2014-09-09T11:55:39Z</dc:date>
      <clearspace:dateToText>2 months 4 days ago</clearspace:dateToText>
      <clearspace:messageCount>1</clearspace:messageCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>It seems like some of the features that I want to use are not available  in MUSE like in browser editing?</title>
      <link>https://forums.adobe.com/thread/1569527</link>
      <description>&lt;!-- [DocumentBodyStart:548684aa-8da1-45d3-96d2-c04779fe65ae] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I decide to use Business Catalyst for hosting because it came with my CC membership, However it seems that some of the main things I wanted to do might not be available or can only be used for additional membership fees.&amp;nbsp; I wish that this was more clear beforehand!&amp;nbsp; I am happy with the built in things but I am a little disappointed in finding out some of the features that I wanted to use, such as in browser editing might not even be available at all as long as I use MUSE.&amp;nbsp; Managing customers using secure zones, and some other page level sign in forms seem to be not available also&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Is this correct, if so what other limits can I expect? &lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:548684aa-8da1-45d3-96d2-c04779fe65ae] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">muse limitations in bc can i use in browser editing for my customers</category>
      <pubDate>Tue, 09 Sep 2014 03:20:25 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1569527</guid>
      <dc:date>2014-09-09T03:20:25Z</dc:date>
      <clearspace:dateToText>2 months 4 days ago</clearspace:dateToText>
      <clearspace:messageCount>4</clearspace:messageCount>
      <clearspace:replyCount>3</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Javascript Code Error - Java Newbie in need of help</title>
      <link>https://forums.adobe.com/thread/1547981</link>
      <description>&lt;!-- [DocumentBodyStart:12e9d866-efac-4f71-ae07-810fcc503043] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I am trying to figure out what the issue is....There is a ERROR coming up in line 82 when I inspect the code but do not know JavaScript syntax well enough to figure out what is wrong. &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;PLEASE HELP! &lt;span aria-label="Happy" class="emoticon-inline emoticon_happy" style="height:16px;width:16px;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;a href="https://forums.adobe.com/servlet/JiveServlet/showImage/2-6641497-660923/line82.jpg"&gt;&lt;img alt="line82.jpg" class="jive-image image-1" height="522" src="https://forums.adobe.com/servlet/JiveServlet/downloadImage/2-6641497-660923/line82.jpg" style="height: auto;" width="513"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:12e9d866-efac-4f71-ae07-810fcc503043] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">javascript</category>
      <pubDate>Thu, 14 Aug 2014 20:24:29 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1547981</guid>
      <dc:date>2014-08-14T20:24:29Z</dc:date>
      <clearspace:dateToText>2 months 1 month ago</clearspace:dateToText>
      <clearspace:messageCount>2</clearspace:messageCount>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>template bumping head content holders to body</title>
      <link>https://forums.adobe.com/thread/1547052</link>
      <description>&lt;!-- [DocumentBodyStart:23cedeac-ed08-4179-aa2b-c13f528791d3] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I am trying to place content holders for scripts, queries and meta tags in the head of the template, but after I've saved the template, it bumps them to the body. What am I doing wrong or what should I be doing differently?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:23cedeac-ed08-4179-aa2b-c13f528791d3] --&gt;</description>
      <pubDate>Wed, 13 Aug 2014 21:36:51 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1547052</guid>
      <dc:date>2014-08-13T21:36:51Z</dc:date>
      <clearspace:dateToText>2 months 1 week ago</clearspace:dateToText>
      <clearspace:messageCount>2</clearspace:messageCount>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Are the paths correct for this third party css and js links?</title>
      <link>https://forums.adobe.com/thread/1543398</link>
      <description>&lt;!-- [DocumentBodyStart:724e1ff9-ec6e-4072-9e49-39da7d227a89] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I am trying to install some third party software on my BC site. BC does not want to recognize the following script. Are my paths wrong?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p class="line"&gt;&lt;span class="nt"&gt;&amp;lt;script &lt;/span&gt;&lt;span class="na"&gt;src=&lt;/span&gt;&lt;span class="s"&gt;"//code.jquery.com/jquery-latest.min.js"&lt;/span&gt; &lt;span class="na"&gt;type=&lt;/span&gt;&lt;span class="s"&gt;"text/javascript"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&amp;lt;/script&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="line"&gt;&lt;span class="nt"&gt;&amp;lt;script &lt;/span&gt;&lt;span class="na"&gt;src=&lt;/span&gt;&lt;span class="s"&gt;"//code.jquery.com/ui/1.10.3/jquery-ui.js"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&amp;lt;/script&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="line"&gt;&lt;span class="nt"&gt;&amp;lt;script &lt;/span&gt;&lt;span class="na"&gt;src=&lt;/span&gt;&lt;span class="s"&gt;"//pactsafe.com/assets/pactsafe.js"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&amp;lt;/script&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="line"&gt;&lt;span class="nt"&gt;&amp;lt;link&lt;/span&gt; &lt;span class="na"&gt;href=&lt;/span&gt;&lt;span class="s"&gt;"//pactsafe.com/assets/badge.css"&lt;/span&gt; &lt;span class="na"&gt;media=&lt;/span&gt;&lt;span class="s"&gt;"screen"&lt;/span&gt; &lt;span class="na"&gt;rel=&lt;/span&gt;&lt;span class="s"&gt;"stylesheet"&lt;/span&gt; &lt;span class="nt"&gt;/&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks&lt;/p&gt;&lt;p&gt;Robert&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:724e1ff9-ec6e-4072-9e49-39da7d227a89] --&gt;</description>
      <pubDate>Sun, 10 Aug 2014 07:26:27 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1543398</guid>
      <dc:date>2014-08-10T07:26:27Z</dc:date>
      <clearspace:dateToText>1 month 4 weeks ago</clearspace:dateToText>
      <clearspace:messageCount>3</clearspace:messageCount>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>BC dynamic menu not working in iPad</title>
      <link>https://forums.adobe.com/thread/1541147</link>
      <description>&lt;!-- [DocumentBodyStart:ce62c288-9eea-4ac8-91d9-c7924f1c059e] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;When I touch a menu item, nothing happens. Works fine on desktop and rarely on iPad.&lt;/p&gt;&lt;p&gt;crystal-rose.org&lt;/p&gt;&lt;p&gt;Can anyone help out?&lt;/p&gt;&lt;p&gt;Thanks&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:ce62c288-9eea-4ac8-91d9-c7924f1c059e] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">dynamic_menus ipad_dynamic_menus</category>
      <pubDate>Wed, 06 Aug 2014 21:21:49 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1541147</guid>
      <dc:date>2014-08-06T21:21:49Z</dc:date>
      <clearspace:dateToText>3 months 1 day ago</clearspace:dateToText>
      <clearspace:messageCount>7</clearspace:messageCount>
      <clearspace:replyCount>6</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Styling a class for links  Hover/active, etc</title>
      <link>https://forums.adobe.com/thread/1534659</link>
      <description>&lt;!-- [DocumentBodyStart:bc6a8415-f7b4-40cb-98e4-e4d8c83bcb3f] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hello,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;This is a most basic question about formatting text links in css&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I have tried to do it myself. I got the hover to work -- at least in firefox. But can't get the default color to work. Only hover.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span&gt;Please look at this development page &lt;/span&gt;&lt;a class="jive-link-external-small" href="http://ogrowby.com/" rel="nofollow"&gt;http://ogrowby.com/&lt;/a&gt;&lt;span&gt; in firefox.&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;There is a menu about the middle of the page, called "Test Menu". Please click on that. Then, in the dropdown, go to "TEST LINK".&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;When you hover over it, the text color changes to Gold. That is fine. But its default text color is black and I want it to be white. I may also want to change the font size, etc. But the main thing is to get the css working to set the default text color for this class to WHITE. #ffffff.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Here's my css so far. The hover is working, but the default remains needs to be changed to #ffffff Only for the ".roundeddblue" class. And it needs to work not only in firefox but other modern browsers.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks, Rowby&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;pre ___default_attr="css" _modifiedtitle="true" class="jive_macro_code jive_text_macro"&gt;
&lt;p&gt;&lt;code&gt;&lt;span style="color: #000000;"&gt;.roundedblue:link,&lt;/span&gt;&lt;br/&gt;&lt;span style="color: #000000;"&gt;div#Maximenu_NEW_GRANDE ul.maximenuck2 li.roundedblue:hover span.separator {&lt;/span&gt;&lt;br/&gt;&lt;span style="color: #000000;"&gt;&amp;nbsp; color: white;&lt;/span&gt;&lt;br/&gt;&lt;span style="color: #000000;"&gt;}&lt;/span&gt;&lt;br/&gt;&lt;br/&gt;&lt;span style="color: #000000;"&gt;.roundedblue:hover,&lt;/span&gt;&lt;br/&gt;&lt;span style="color: #000000;"&gt;div#Maximenu_NEW_GRANDE ul.maximenuck2 li.roundedblue:hover span.separator {&lt;/span&gt;&lt;br/&gt;&lt;span style="color: #000000;"&gt;&amp;nbsp; color: #FFB300;&lt;/span&gt;&lt;br/&gt; &lt;br/&gt;&lt;span style="color: #000000;"&gt;}&lt;/span&gt;&lt;/code&gt;&lt;/p&gt;


&lt;/pre&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:bc6a8415-f7b4-40cb-98e4-e4d8c83bcb3f] --&gt;</description>
      <pubDate>Tue, 29 Jul 2014 18:37:14 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1534659</guid>
      <dc:date>2014-07-29T18:37:14Z</dc:date>
      <clearspace:dateToText>3 months 2 weeks ago</clearspace:dateToText>
      <clearspace:messageCount>3</clearspace:messageCount>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Interior Design Template slider problem</title>
      <link>https://forums.adobe.com/thread/1534172</link>
      <description>&lt;!-- [DocumentBodyStart:957ad4f2-19d9-4954-8607-a07ec2e6d7b4] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Can anyone help me with the Interior design template? I edited the title tag and suddenly the sliders decided to stack on top of each other. I figured that the home page template must be screwed up so I created a new site with the template. I copied and pasted the Home page code into a new Page Template on the site and changed the module numbers. But the sliders are still stacking on each other. &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Here's the page: feetforlife.com/index2.html&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I need&amp;nbsp; help FAST if anyone can help. &lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:957ad4f2-19d9-4954-8607-a07ec2e6d7b4] --&gt;</description>
      <pubDate>Tue, 29 Jul 2014 03:39:40 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1534172</guid>
      <dc:date>2014-07-29T03:39:40Z</dc:date>
      <clearspace:dateToText>3 months 2 weeks ago</clearspace:dateToText>
      <clearspace:messageCount>5</clearspace:messageCount>
      <clearspace:replyCount>4</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>BC Workflow , EMail Trigger</title>
      <link>https://forums.adobe.com/thread/1523108</link>
      <description>&lt;!-- [DocumentBodyStart:050340ba-a1f7-4b8d-901e-c2a429503a79] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I'm having troubles locating which "System Email" will be sent in the event of&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Submission of Web Forms --&amp;gt; Trigger a Workflow Event&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I'm assuming somewhere in the Workflow Event will identify which "System Email" will be sent, however I'm unable to where it identifies which email will be sent?&amp;nbsp; Can anyone shed some light please. Thanks!&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:050340ba-a1f7-4b8d-901e-c2a429503a79] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">email</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">workflow</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">webform</category>
      <pubDate>Wed, 16 Jul 2014 06:28:36 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1523108</guid>
      <dc:date>2014-07-16T06:28:36Z</dc:date>
      <clearspace:dateToText>2 months 1 week ago</clearspace:dateToText>
      <clearspace:messageCount>2</clearspace:messageCount>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Javascript ? - Multiply # of products by 3 for tally / Spend $xx more for free shipping</title>
      <link>https://forums.adobe.com/thread/1519361</link>
      <description>&lt;!-- [DocumentBodyStart:a3c24ef4-c811-4f02-8297-10d404e5a0ab] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hello,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I don't know javascript and I have a couple of items that I think need javascript in order to complete. Please ee below. Thanks in advance for your help!&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;1) This website sells headbands. In order to give back to the community, every headband purchased will provide 3 meals for a child in Uganda (provides through a local ministry).&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;We have a note in the header that says that "1 headband = 3 meals". We'd like to implement a tally or counter feature in the header that takes the number of products purchased and multiples it by 3 to show a total number of meals provided because of what is in their shopping cart.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;2) We want to add a notice in the shopping cart that will encourage people to buy additional products to qualify for free shipping. i.e. &amp;#8220;spend $7 more and receive free shipping and handling&amp;rdquo;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;They need to spend $45 to get free shipping. What code could I add to the shopping cart to achieve this?&amp;nbsp; &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;(Also, we'd also be interested in adding a related products feature here as well.)&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;The development site is located here:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;a class="jive-link-external-small" href="http://banded.businesscatalyst.com/shop" rel="nofollow"&gt;http://banded.businesscatalyst.com/shop&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;(Note: This site is for development and testing only. Not all links work outside of the main shop page)&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks for your help.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:a3c24ef4-c811-4f02-8297-10d404e5a0ab] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">javascript</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">counter</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">tally</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">free shipping</category>
      <pubDate>Thu, 10 Jul 2014 22:39:32 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1519361</guid>
      <dc:date>2014-07-10T22:39:32Z</dc:date>
      <clearspace:dateToText>1 month 4 weeks ago</clearspace:dateToText>
      <clearspace:messageCount>2</clearspace:messageCount>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>W3C validators errors checking</title>
      <link>https://forums.adobe.com/thread/1519280</link>
      <description>&lt;!-- [DocumentBodyStart:387437d4-a571-466d-81f1-add4341746d6] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Help me please I find few errors and I cant fix it&lt;/p&gt;&lt;p&gt;Errors:&lt;/p&gt;&lt;h3 class="invalid"&gt;Validation Output: 6 Errors &lt;/h3&gt;&lt;ol&gt;&lt;li&gt; &lt;span class="err_type"&gt;&lt;a href="http://validator.w3.org/images/info_icons/error.png"&gt;&lt;img alt="Error" class="jive-image" src="http://validator.w3.org/images/info_icons/error.png" title="Error"/&gt;&lt;/a&gt;&lt;/span&gt;&amp;nbsp; &lt;em&gt;Line 34, Column 48&lt;/em&gt;: &lt;span class="msg"&gt;Attribute name not allowed on element meta at this point.&lt;/span&gt; &lt;code class="input"&gt;&amp;lt;META name="robots" content="NOINDEX, NOFOLLOW"&lt;strong title="Position where error was detected."&gt;&amp;gt;&lt;/strong&gt;&lt;/code&gt;&lt;p class="html5 ve" style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;dl&gt;&lt;dt&gt;Attributes for element &lt;a class="jive-link-external-small" href="http://www.w3.org/html/wg/drafts/html/master/single-page.html#the-meta-element" rel="nofollow"&gt;&lt;code&gt;meta&lt;/code&gt;&lt;/a&gt;:&lt;/dt&gt;&lt;dd&gt;&lt;a class="jive-link-external-small" href="http://www.w3.org/html/wg/drafts/html/master/single-page.html#global-attributes" rel="nofollow"&gt;Global attributes&lt;/a&gt;&lt;/dd&gt;&lt;dd&gt;&lt;code&gt;&lt;a class="jive-link-external-small" href="http://www.w3.org/html/wg/drafts/html/master/single-page.html#attr-meta-name" rel="nofollow"&gt;name&lt;/a&gt;&lt;/code&gt;&lt;/dd&gt;&lt;dd&gt;&lt;code&gt;&lt;a class="jive-link-external-small" href="http://www.w3.org/html/wg/drafts/html/master/single-page.html#attr-meta-http-equiv" rel="nofollow"&gt;http-equiv&lt;/a&gt;&lt;/code&gt;&lt;/dd&gt;&lt;dd&gt;&lt;code&gt;&lt;a class="jive-link-external-small" href="http://www.w3.org/html/wg/drafts/html/master/single-page.html#attr-meta-content" rel="nofollow"&gt;content&lt;/a&gt;&lt;/code&gt;&lt;/dd&gt;&lt;dd&gt;&lt;code&gt;&lt;a class="jive-link-external-small" href="http://www.w3.org/html/wg/drafts/html/master/single-page.html#attr-meta-charset" rel="nofollow"&gt;charset&lt;/a&gt;&lt;/code&gt;&lt;/dd&gt;&lt;/dl&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;/li&gt;&lt;li&gt; &lt;span class="err_type"&gt;&lt;a href="http://validator.w3.org/images/info_icons/error.png"&gt;&lt;img alt="Error" class="jive-image" src="http://validator.w3.org/images/info_icons/error.png" title="Error"/&gt;&lt;/a&gt;&lt;/span&gt;&amp;nbsp; &lt;em&gt;Line 34, Column 48&lt;/em&gt;: &lt;span class="msg"&gt;Element meta is missing one or more of the following attributes: itemprop, property.&lt;/span&gt; &lt;code class="input"&gt;&amp;lt;META name="robots" content="NOINDEX, NOFOLLOW"&lt;strong title="Position where error was detected."&gt;&amp;gt;&lt;/strong&gt;&lt;/code&gt;&lt;p class="html5 ve" style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;dl&gt;&lt;dt&gt;Attributes for element &lt;a class="jive-link-external-small" href="http://www.w3.org/html/wg/drafts/html/master/single-page.html#the-meta-element" rel="nofollow"&gt;&lt;code&gt;meta&lt;/code&gt;&lt;/a&gt;:&lt;/dt&gt;&lt;dd&gt;&lt;a class="jive-link-external-small" href="http://www.w3.org/html/wg/drafts/html/master/single-page.html#global-attributes" rel="nofollow"&gt;Global attributes&lt;/a&gt;&lt;/dd&gt;&lt;dd&gt;&lt;code&gt;&lt;a class="jive-link-external-small" href="http://www.w3.org/html/wg/drafts/html/master/single-page.html#attr-meta-name" rel="nofollow"&gt;name&lt;/a&gt;&lt;/code&gt;&lt;/dd&gt;&lt;dd&gt;&lt;code&gt;&lt;a class="jive-link-external-small" href="http://www.w3.org/html/wg/drafts/html/master/single-page.html#attr-meta-http-equiv" rel="nofollow"&gt;http-equiv&lt;/a&gt;&lt;/code&gt;&lt;/dd&gt;&lt;dd&gt;&lt;code&gt;&lt;a class="jive-link-external-small" href="http://www.w3.org/html/wg/drafts/html/master/single-page.html#attr-meta-content" rel="nofollow"&gt;content&lt;/a&gt;&lt;/code&gt;&lt;/dd&gt;&lt;dd&gt;&lt;code&gt;&lt;a class="jive-link-external-small" href="http://www.w3.org/html/wg/drafts/html/master/single-page.html#attr-meta-charset" rel="nofollow"&gt;charset&lt;/a&gt;&lt;/code&gt;&lt;/dd&gt;&lt;/dl&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;/li&gt;&lt;li&gt; &lt;span class="err_type"&gt;&lt;a href="http://validator.w3.org/images/info_icons/error.png"&gt;&lt;img alt="Error" class="jive-image" src="http://validator.w3.org/images/info_icons/error.png" title="Error"/&gt;&lt;/a&gt;&lt;/span&gt;&amp;nbsp; &lt;em&gt;Line 35, Column 38&lt;/em&gt;: &lt;span class="msg"&gt;Attribute name not allowed on element meta at this point.&lt;/span&gt; &lt;code class="input"&gt;&amp;lt;meta name="language" content="EN-US"&lt;strong title="Position where error was detected."&gt;&amp;gt;&lt;/strong&gt;&lt;/code&gt;&lt;p class="html5 ve" style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;dl&gt;&lt;dt&gt;Attributes for element &lt;a class="jive-link-external-small" href="http://www.w3.org/html/wg/drafts/html/master/single-page.html#the-meta-element" rel="nofollow"&gt;&lt;code&gt;meta&lt;/code&gt;&lt;/a&gt;:&lt;/dt&gt;&lt;dd&gt;&lt;a class="jive-link-external-small" href="http://www.w3.org/html/wg/drafts/html/master/single-page.html#global-attributes" rel="nofollow"&gt;Global attributes&lt;/a&gt;&lt;/dd&gt;&lt;dd&gt;&lt;code&gt;&lt;a class="jive-link-external-small" href="http://www.w3.org/html/wg/drafts/html/master/single-page.html#attr-meta-name" rel="nofollow"&gt;name&lt;/a&gt;&lt;/code&gt;&lt;/dd&gt;&lt;dd&gt;&lt;code&gt;&lt;a class="jive-link-external-small" href="http://www.w3.org/html/wg/drafts/html/master/single-page.html#attr-meta-http-equiv" rel="nofollow"&gt;http-equiv&lt;/a&gt;&lt;/code&gt;&lt;/dd&gt;&lt;dd&gt;&lt;code&gt;&lt;a class="jive-link-external-small" href="http://www.w3.org/html/wg/drafts/html/master/single-page.html#attr-meta-content" rel="nofollow"&gt;content&lt;/a&gt;&lt;/code&gt;&lt;/dd&gt;&lt;dd&gt;&lt;code&gt;&lt;a class="jive-link-external-small" href="http://www.w3.org/html/wg/drafts/html/master/single-page.html#attr-meta-charset" rel="nofollow"&gt;charset&lt;/a&gt;&lt;/code&gt;&lt;/dd&gt;&lt;/dl&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;/li&gt;&lt;li&gt; &lt;span class="err_type"&gt;&lt;a href="http://validator.w3.org/images/info_icons/error.png"&gt;&lt;img alt="Error" class="jive-image" src="http://validator.w3.org/images/info_icons/error.png" title="Error"/&gt;&lt;/a&gt;&lt;/span&gt;&amp;nbsp; &lt;em&gt;Line 35, Column 38&lt;/em&gt;: &lt;span class="msg"&gt;Element meta is missing one or more of the following attributes: itemprop, property.&lt;/span&gt; &lt;code class="input"&gt;&amp;lt;meta name="language" content="EN-US"&lt;strong title="Position where error was detected."&gt;&amp;gt;&lt;/strong&gt;&lt;/code&gt;&lt;p class="html5 ve" style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;dl&gt;&lt;dt&gt;Attributes for element &lt;a class="jive-link-external-small" href="http://www.w3.org/html/wg/drafts/html/master/single-page.html#the-meta-element" rel="nofollow"&gt;&lt;code&gt;meta&lt;/code&gt;&lt;/a&gt;:&lt;/dt&gt;&lt;dd&gt;&lt;a class="jive-link-external-small" href="http://www.w3.org/html/wg/drafts/html/master/single-page.html#global-attributes" rel="nofollow"&gt;Global attributes&lt;/a&gt;&lt;/dd&gt;&lt;dd&gt;&lt;code&gt;&lt;a class="jive-link-external-small" href="http://www.w3.org/html/wg/drafts/html/master/single-page.html#attr-meta-name" rel="nofollow"&gt;name&lt;/a&gt;&lt;/code&gt;&lt;/dd&gt;&lt;dd&gt;&lt;code&gt;&lt;a class="jive-link-external-small" href="http://www.w3.org/html/wg/drafts/html/master/single-page.html#attr-meta-http-equiv" rel="nofollow"&gt;http-equiv&lt;/a&gt;&lt;/code&gt;&lt;/dd&gt;&lt;dd&gt;&lt;code&gt;&lt;a class="jive-link-external-small" href="http://www.w3.org/html/wg/drafts/html/master/single-page.html#attr-meta-content" rel="nofollow"&gt;content&lt;/a&gt;&lt;/code&gt;&lt;/dd&gt;&lt;dd&gt;&lt;code&gt;&lt;a class="jive-link-external-small" href="http://www.w3.org/html/wg/drafts/html/master/single-page.html#attr-meta-charset" rel="nofollow"&gt;charset&lt;/a&gt;&lt;/code&gt;&lt;/dd&gt;&lt;/dl&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;/li&gt;&lt;li&gt; &lt;span class="err_type"&gt;&lt;a href="http://validator.w3.org/images/info_icons/error.png"&gt;&lt;img alt="Error" class="jive-image" src="http://validator.w3.org/images/info_icons/error.png" title="Error"/&gt;&lt;/a&gt;&lt;/span&gt;&amp;nbsp; &lt;em&gt;Line 103, Column 8&lt;/em&gt;: &lt;span class="msg"&gt;Stray end tag head.&lt;/span&gt; &lt;code class="input"&gt; &amp;lt;/head&lt;strong title="Position where error was detected."&gt;&amp;gt;&lt;/strong&gt;&lt;/code&gt;&lt;p class="helpwanted"&gt; &lt;a class="jive-link-external-small" href="http://validator.w3.org/feedback.html?uri=http%3A%2F%2Fwww.pagelayouts.net%2F;errmsg_id=html5#errormsg" rel="nofollow"&gt;✉&lt;/a&gt;&amp;nbsp;&amp;nbsp; &lt;/p&gt;&lt;/li&gt;&lt;li&gt; &lt;span class="err_type"&gt;&lt;a href="http://validator.w3.org/images/info_icons/error.png"&gt;&lt;img alt="Error" class="jive-image" src="http://validator.w3.org/images/info_icons/error.png" title="Error"/&gt;&lt;/a&gt;&lt;/span&gt;&amp;nbsp; &lt;em&gt;Line 104, Column 7&lt;/em&gt;: &lt;span class="msg"&gt;An body start tag seen but an element of the same type was already open.&lt;/span&gt; &lt;code class="input"&gt; &amp;lt;body&lt;strong title="Position where error was detected."&gt;&amp;gt;&lt;/strong&gt;&lt;/code&gt;&lt;/li&gt;&lt;/ol&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:387437d4-a571-466d-81f1-add4341746d6] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">w3c validators errors checking</category>
      <pubDate>Thu, 10 Jul 2014 20:37:28 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1519280</guid>
      <dc:date>2014-07-10T20:37:28Z</dc:date>
      <clearspace:dateToText>4 months 4 days ago</clearspace:dateToText>
      <clearspace:messageCount>1</clearspace:messageCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>BC Gurus responsive template slider</title>
      <link>https://forums.adobe.com/thread/1517498</link>
      <description>&lt;!-- [DocumentBodyStart:36da93b4-73a4-4fbb-b2fb-c21bd02ba81d] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Help!!!&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I have installed one of BC Gurus' responsive templates for a new site and have somehow managed to mess up the home page slider.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;All I did was open the Home template, delete a couple lines of code to remove a row, and the slider now displays stacked.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;When I restored the code I had deleted, and even when I rolled the page back, the slide ris still not repaired.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Can someone PLEASE help me???&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Here is the page: &lt;a class="jive-link-external-small" href="http://abcsanjose-responsive.businesscatalyst.com/index" rel="nofollow"&gt;Home Page&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thank you!&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:36da93b4-73a4-4fbb-b2fb-c21bd02ba81d] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">slider</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">javascipt</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">bc gurus</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">responsive template</category>
      <pubDate>Tue, 08 Jul 2014 21:51:46 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1517498</guid>
      <dc:date>2014-07-08T21:51:46Z</dc:date>
      <clearspace:dateToText>2 months 4 days ago</clearspace:dateToText>
      <clearspace:messageCount>5</clearspace:messageCount>
      <clearspace:replyCount>4</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>jQuery expander not working on BC. Script conflict?</title>
      <link>https://forums.adobe.com/thread/1511998</link>
      <description>&lt;!-- [DocumentBodyStart:dd42aaac-072d-4196-bea2-09ee78b7639e] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Test site is - &lt;a class="jive-link-external-small" href="http://dezine03.businesscatalyst.com/index.html" rel="nofollow"&gt;http://dezine03.businesscatalyst.com/index.html&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Problem - JQuery expander is not working in the WORK section. Clicking on an image module should expand up to reveal project details. It does work on my own test site - &lt;a class="jive-link-external-small" href="http://jbbd.net/dzn/test2/index.html" rel="nofollow"&gt;http://jbbd.net/dzn/test2/index.html&lt;/a&gt; - so I know it's not the script itself.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Chat support said it was probably a BC javascript conflict, but couldn't comment any further.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Can anyone help? Otherwise will need to move client off BC.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks!&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;jerry&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:dd42aaac-072d-4196-bea2-09ee78b7639e] --&gt;</description>
      <pubDate>Tue, 01 Jul 2014 22:58:59 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1511998</guid>
      <dc:date>2014-07-01T22:58:59Z</dc:date>
      <clearspace:dateToText>4 months 2 weeks ago</clearspace:dateToText>
      <clearspace:messageCount>3</clearspace:messageCount>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Secure Login - Changing text</title>
      <link>https://forums.adobe.com/thread/1507818</link>
      <description>&lt;!-- [DocumentBodyStart:456a02b1-8cf9-4a49-90f9-7203b1586f05] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hello&lt;/p&gt;&lt;p&gt;&lt;span style="color: #333333; font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, Verdana, sans-serif; font-size: 12px;"&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #333333; font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, Verdana, sans-serif; font-size: 12px;"&gt;I would like to change the secure zone login text from &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #333333; font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, Verdana, sans-serif; font-size: 12px;"&gt;&lt;br/&gt;'No one logged in. Log in' &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #333333; font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, Verdana, sans-serif; font-size: 12px;"&gt;to &lt;br/&gt;'Sign in to the Hogan Secure Zone &amp;gt;' &lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #333333; font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, Verdana, sans-serif; font-size: 12px;"&gt;is this possible. I am using the {module_whosloggedin,/members-login.html} &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #333333; font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, Verdana, sans-serif; font-size: 12px;"&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #333333; font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, Verdana, sans-serif; font-size: 12px;"&gt;Is it possible to edit the log in text? &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #333333; font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, Verdana, sans-serif; font-size: 12px;"&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #333333; font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, Verdana, sans-serif; font-size: 12px;"&gt;Please be as specific as possible as very new to all this &lt;span aria-label="Happy" class="emoticon-inline emoticon_happy" style="height:16px;width:16px;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #333333; font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, Verdana, sans-serif; font-size: 12px;"&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #333333; font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, Verdana, sans-serif; font-size: 12px;"&gt;Thanks&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #333333; font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, Verdana, sans-serif; font-size: 12px;"&gt;&lt;br/&gt;&lt;/span&gt;Colin&lt;/p&gt;&lt;p&gt;&lt;span style="color: #333333; font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, Verdana, sans-serif; font-size: 12px;"&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:456a02b1-8cf9-4a49-90f9-7203b1586f05] --&gt;</description>
      <pubDate>Thu, 26 Jun 2014 15:55:08 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1507818</guid>
      <dc:date>2014-06-26T15:55:08Z</dc:date>
      <clearspace:dateToText>4 months 3 weeks ago</clearspace:dateToText>
      <clearspace:messageCount>1</clearspace:messageCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>where is html source for button text?</title>
      <link>https://forums.adobe.com/thread/1502146</link>
      <description>&lt;!-- [DocumentBodyStart:c12705bc-22a0-40b4-ab4a-aaaa7441f92d] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;salut,&lt;/p&gt;&lt;p&gt;I created a button and a name for that button in Muse using drag/drop and the text tool.&lt;/p&gt;&lt;p&gt;Now I want to edit that text in the html source. I'm familiar with the development platform on BC and have searched through every .html file.&lt;/p&gt;&lt;p&gt;I've located the html source for the buttons and the css properties for the button and the text.&lt;/p&gt;&lt;p&gt;However, I cannot locate the html source for that button text. Does anyone know where that source is?&lt;/p&gt;&lt;p&gt;...many thanks&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:c12705bc-22a0-40b4-ab4a-aaaa7441f92d] --&gt;</description>
      <pubDate>Fri, 20 Jun 2014 17:47:47 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1502146</guid>
      <dc:date>2014-06-20T17:47:47Z</dc:date>
      <clearspace:dateToText>4 months 3 weeks ago</clearspace:dateToText>
      <clearspace:messageCount>1</clearspace:messageCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Error with universalis responsive template. Prices appear with 163; code before them instead of £ sign. Does anyone know how to fix this problem?</title>
      <link>https://forums.adobe.com/thread/1501950</link>
      <description>&lt;!-- [DocumentBodyStart:c778ee56-934d-48a2-ad02-3b41a4c11677] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Error with universalis responsive template. Prices appear with 163; code before them instead of &amp;pound; sign. Does anyone know how to fix this problem?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:c778ee56-934d-48a2-ad02-3b41a4c11677] --&gt;</description>
      <pubDate>Fri, 20 Jun 2014 14:14:12 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1501950</guid>
      <dc:date>2014-06-20T14:14:12Z</dc:date>
      <clearspace:dateToText>4 months 3 weeks ago</clearspace:dateToText>
      <clearspace:messageCount>1</clearspace:messageCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Adding a Dealer Locator map to a Business Catalyst template</title>
      <link>https://forums.adobe.com/thread/1496192</link>
      <description>&lt;!-- [DocumentBodyStart:262ea590-8225-4e33-80e9-57f0384538f9] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Can you add a Dealer Locator map to a Business Catalyst template if one was not provided in the original template? I would like to add a Dealer Locator to this Mintech Template&amp;nbsp; -&amp;nbsp; &lt;a class="jive-link-external-small" href="http://mintech-ecommerce-us.businesscatalyst.com/" rel="nofollow"&gt;Home Page&lt;/a&gt; is this possible?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:262ea590-8225-4e33-80e9-57f0384538f9] --&gt;</description>
      <pubDate>Fri, 13 Jun 2014 18:21:10 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1496192</guid>
      <dc:date>2014-06-13T18:21:10Z</dc:date>
      <clearspace:dateToText>5 months 7 hours ago</clearspace:dateToText>
      <clearspace:messageCount>2</clearspace:messageCount>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Login/Register On Checkout</title>
      <link>https://forums.adobe.com/thread/1495476</link>
      <description>&lt;!-- [DocumentBodyStart:af8aa45a-eea9-420f-bc76-2c1bfd6d4eee] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hello all,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I'm trying to get the login/register working as listed here -&amp;gt; &lt;a class="jive-link-wiki-small" data-containerId="4871" data-containerType="14" data-objectId="2529" data-objectType="102" href="https://forums.adobe.com/docs/DOC-2529"&gt;Creating login functionality on eCommerce registration form for return customers&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I have it working but I'm having a small issue that the checkout form has the username/password modules in it so that new users can create an account. The problem is when I login and it shows this form I hide the username/password fields, because the user already has an account. Yet the form fields are still on the DOM and still getting checked client side.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;How can I have the username/password be there for new users, yet remove it when a user logs in? ... Is it as simple as using the {module_username} and {module_password} on those inputs?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks for the help.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:af8aa45a-eea9-420f-bc76-2c1bfd6d4eee] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">forms</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">users</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">login</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">checkout</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">ecommerce</category>
      <pubDate>Thu, 12 Jun 2014 21:17:24 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1495476</guid>
      <dc:date>2014-06-12T21:17:24Z</dc:date>
      <clearspace:dateToText>5 months 1 day ago</clearspace:dateToText>
      <clearspace:messageCount>1</clearspace:messageCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>When I start DW I get this error message.  While executing onload in Business Catalyst.htm the following Java Scrip error occurred: In file"Business Catalyst"; bcinet is not defined.  How do I cure this error?</title>
      <link>https://forums.adobe.com/thread/1491181</link>
      <description>&lt;!-- [DocumentBodyStart:c34d3bed-cc32-4481-bf4e-39df0a0a34fe] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;When I start DW I get this error message.&amp;nbsp; While executing onload in Business Catalyst.htm the following Java Scrip error occurred: In file"Business Catalyst"; bcinet is not defined.&amp;nbsp; How do I cure this error?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:c34d3bed-cc32-4481-bf4e-39df0a0a34fe] --&gt;</description>
      <pubDate>Fri, 06 Jun 2014 14:55:31 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1491181</guid>
      <dc:date>2014-06-06T14:55:31Z</dc:date>
      <clearspace:dateToText>5 months 1 week ago</clearspace:dateToText>
      <clearspace:messageCount>1</clearspace:messageCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Custom Bootstrap accordion for FAQ module</title>
      <link>https://forums.adobe.com/thread/1487439</link>
      <description>&lt;!-- [DocumentBodyStart:70d1c893-af4d-40e8-acb7-3e2fbc65376b] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p style="font-family: Times; color: #323333;"&gt;Hi I am trying to set up a&amp;nbsp; Custom Twitter Bootstrap javascript accordion for FAQ module. &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="font-family: Times; color: #323333;"&gt;Nearly there, yet only one of the faqs works in that you click on the question and the answer opens, clicking on any other question opens up the same question&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="font-family: Times; color: #323333;"&gt;I've customed Faq list layout with this code:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="font-family: Times; color: #323333;"&gt;&amp;lt;div class="panel panel-default"&amp;gt;&lt;/p&gt;&lt;p style="font-family: Times; color: #323333;"&gt;&amp;lt;div class="panel-heading"&amp;gt;&lt;/p&gt;&lt;p style="font-family: Times; color: #323333;"&gt;&amp;lt;h4 class="panel-title"&amp;gt;&lt;/p&gt;&lt;p style="font-family: Times; color: #323333;"&gt;&amp;lt;a class="accordion-toggle" data-toggle="collapse" data-parent="#accordion" href="#&lt;span style="color: #ff2500;"&gt;&lt;strong&gt;1&lt;/strong&gt;&lt;/span&gt;"&amp;gt;&lt;/p&gt;&lt;p style="font-family: Times; color: #323333;"&gt;{tag_question_nolink}&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/a&amp;gt;&lt;/p&gt;&lt;p style="font-family: Times; color: #323333;"&gt;&amp;lt;/h4&amp;gt;&lt;/p&gt;&lt;p style="font-family: Times; color: #323333;"&gt;&amp;lt;/div&amp;gt;&lt;/p&gt;&lt;p style="font-family: Times; color: #323333;"&gt;&amp;lt;div id="&lt;span style="color: #ff2500;"&gt;&lt;strong&gt;1&lt;/strong&gt;&lt;/span&gt;" class="panel-collapse collapse"&amp;gt;&lt;/p&gt;&lt;p style="font-family: Times; color: #323333;"&gt;&amp;lt;div class="panel-body"&amp;gt;&lt;/p&gt;&lt;p style="font-family: Times; color: #323333;"&gt;{tag_answer}&lt;/p&gt;&lt;p style="font-family: Times; color: #323333;"&gt;&amp;lt;/div&amp;gt;&lt;/p&gt;&lt;p style="font-family: Times; color: #323333;"&gt;&amp;lt;/div&amp;gt;&lt;/p&gt;&lt;p style="font-family: Times; color: #323333;"&gt;&amp;lt;/div&amp;gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="font-family: Times; color: #323333;"&gt;I presume I need to amend the code where it has number 1 as only working for one faq but not sure how?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="font-family: Times; color: #323333;"&gt;Any help GREATLY appreciated.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:70d1c893-af4d-40e8-acb7-3e2fbc65376b] --&gt;</description>
      <pubDate>Sun, 01 Jun 2014 21:13:39 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1487439</guid>
      <dc:date>2014-06-01T21:13:39Z</dc:date>
      <clearspace:dateToText>5 months 2 weeks ago</clearspace:dateToText>
      <clearspace:messageCount>5</clearspace:messageCount>
      <clearspace:replyCount>4</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Make the submenu roll vertical under the mainmenu</title>
      <link>https://forums.adobe.com/thread/1480490</link>
      <description>&lt;!-- [DocumentBodyStart:ed7b3026-7bef-4a5e-a55f-43edc9c7b75a] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I want to restyle this template &lt;a class="jive-link-external-small" href="http://lemairelegal.businesscatalyst.com/contact.html" rel="nofollow"&gt;contact&lt;/a&gt; for&amp;nbsp; an client. Which css do I have to add to make the submenu roll down?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks for your time!&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;regards carla&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:ed7b3026-7bef-4a5e-a55f-43edc9c7b75a] --&gt;</description>
      <pubDate>Thu, 22 May 2014 15:33:25 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1480490</guid>
      <dc:date>2014-05-22T15:33:25Z</dc:date>
      <clearspace:dateToText>5 months 1 week ago</clearspace:dateToText>
      <clearspace:messageCount>2</clearspace:messageCount>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>how can i create my BC featured product list in to a slide show for multiple products in one row. i have products aligned in a row i just would like to make it a slide show of the multiple (20) products.</title>
      <link>https://forums.adobe.com/thread/1478125</link>
      <description>&lt;!-- [DocumentBodyStart:9967bffb-cedd-4622-a58e-1b24d8c48e97] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;i have products aligned in a row already using custom css.i just would like to make it a slide show of the multiple (20) products in the one row.&lt;/p&gt;&lt;p&gt;i am using the featured product module from the development section of business catalyst. i would love to display as many new products as possible in one row of products. so i can just click a arrow left button and scroll through the products.&lt;/p&gt;&lt;p&gt;holy-shippers.businesscatalyst.com is the site i am mentioning.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:9967bffb-cedd-4622-a58e-1b24d8c48e97] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">slideshow</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">businesscatalyst_muse</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">product_feature_list</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">ecommerce_module</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">ecommece</category>
      <pubDate>Mon, 19 May 2014 23:11:45 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1478125</guid>
      <dc:date>2014-05-19T23:11:45Z</dc:date>
      <clearspace:dateToText>5 months 3 weeks ago</clearspace:dateToText>
      <clearspace:messageCount>2</clearspace:messageCount>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Changing the startfile from index.html to index.php</title>
      <link>https://forums.adobe.com/thread/1464720</link>
      <description>&lt;!-- [DocumentBodyStart:dec5c5f8-a413-415b-9e03-3298c83e604b] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hello, &lt;/p&gt;&lt;p&gt;I created a website with Muse. The desktop version is working perfectly but the phone version doesn't work as it should work. I named my index file index.php. But when I want to open the phone version on my mobile phone I get an error report. Because its allways looking for a index.html file but my file is called index.php. Does anyone know how to change the startfile?&lt;/p&gt;&lt;p&gt;Bye &lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:dec5c5f8-a413-415b-9e03-3298c83e604b] --&gt;</description>
      <pubDate>Sat, 03 May 2014 13:32:44 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1464720</guid>
      <dc:date>2014-05-03T13:32:44Z</dc:date>
      <clearspace:dateToText>6 months 2 weeks ago</clearspace:dateToText>
      <clearspace:messageCount>2</clearspace:messageCount>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>ICE links, clickable and editable</title>
      <link>https://forums.adobe.com/thread/1462563</link>
      <description>&lt;!-- [DocumentBodyStart:fbcf9efd-b687-4d6c-bcb9-a59cb4935871] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p class="p1"&gt;Hi All,&lt;/p&gt;&lt;p class="p2" style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p class="p1"&gt;I want to make my links clickable and editable. Much like you see when you are using ICE and you hover over menu items. You have the option to edit the name of the menu item and also click on the link to navigate to a different page. When hovering over the menu item a small arrow will appear allowing you to click.&lt;/p&gt;&lt;p class="p2" style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p class="p1"&gt;I have nested accordions in my site. When they appear in ICE they need to be clicked to drop down and reveal the content which I have made editable for my client. I would also like the client to be able to edit the links names, however when making this editable it disables the click function and as a result disables the accordion.&lt;/p&gt;&lt;p class="p2" style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p class="p1"&gt;Does any one know the code eg: &amp;lt;div ice:editable="html"&amp;gt; to make a link, editable and clickable?&lt;/p&gt;&lt;p class="p2" style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p class="p1"&gt;Cheers&lt;/p&gt;&lt;p class="p2" style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p class="p1"&gt;David&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:fbcf9efd-b687-4d6c-bcb9-a59cb4935871] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">ice</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">clickable_link</category>
      <pubDate>Wed, 30 Apr 2014 09:04:00 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1462563</guid>
      <dc:date>2014-04-30T09:04:00Z</dc:date>
      <clearspace:dateToText>6 months 1 week ago</clearspace:dateToText>
      <clearspace:messageCount>3</clearspace:messageCount>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Safe_Save Whenever using Transmit + Sublime Text</title>
      <link>https://forums.adobe.com/thread/1457805</link>
      <description>&lt;!-- [DocumentBodyStart:fc761e63-ec6a-4278-bb7f-1ba988dfec16] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hey All&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I am new to business catalyst and have started to use transmit sftp client and sublime text 2 and everytime I go in and edit a file and upload it up to the server it sets the file as (file_name_safe_save) and it removes the template from it. Has anyone ran into this issue? and if so how do you fix it? &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks in advance&lt;/p&gt;&lt;p&gt;Derek&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:fc761e63-ec6a-4278-bb7f-1ba988dfec16] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">transmit</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">sublime_text</category>
      <pubDate>Wed, 23 Apr 2014 23:59:49 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1457805</guid>
      <dc:date>2014-04-23T23:59:49Z</dc:date>
      <clearspace:dateToText>6 months 3 weeks ago</clearspace:dateToText>
      <clearspace:messageCount>1</clearspace:messageCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Grabbing data from {tag_totalunits} and display in a shopping cart menu.</title>
      <link>https://forums.adobe.com/thread/1456016</link>
      <description>&lt;!-- [DocumentBodyStart:018535a4-8483-4ef9-a610-71130bf5d06a] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hello everyone im working on a shopping cart in my main menu. I want to grab the data from {tag_totalunits} and display it in my shopping cart menu. &lt;/p&gt;&lt;p&gt;I need to do this with javascript i guess, anyone that can help me?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:018535a4-8483-4ef9-a610-71130bf5d06a] --&gt;</description>
      <pubDate>Tue, 22 Apr 2014 11:44:53 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1456016</guid>
      <dc:date>2014-04-22T11:44:53Z</dc:date>
      <clearspace:dateToText>6 months 3 weeks ago</clearspace:dateToText>
      <clearspace:messageCount>3</clearspace:messageCount>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Homepage Design</title>
      <link>https://forums.adobe.com/thread/1450816</link>
      <description>&lt;!-- [DocumentBodyStart:061af937-55c7-443a-98ea-1a7bad7d177f] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I cant seem to remove the border around the picture I've inserted into a page template. &lt;/p&gt;&lt;p&gt;Site Manager&amp;gt;Page Template&amp;gt;Main Template &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;a class="jive-link-external-small" href="http://www.harcourtsonlineshop.co.nz/" rel="nofollow"&gt;http://www.harcourtsonlineshop.co.nz/&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I've checked to make sure the jpeg file has no border and that the picture properties has the border removed. Both no help to this situation. &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Can anyone help?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:061af937-55c7-443a-98ea-1a7bad7d177f] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">design</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">image</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">menu</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">menu-problems</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">webform</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">design_page</category>
      <pubDate>Tue, 15 Apr 2014 09:37:05 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1450816</guid>
      <dc:date>2014-04-15T09:37:05Z</dc:date>
      <clearspace:dateToText>6 months 3 weeks ago</clearspace:dateToText>
      <clearspace:messageCount>2</clearspace:messageCount>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>"/CatalystScripts/Java_DynMenusSelectedCSS.js"&gt;</title>
      <link>https://forums.adobe.com/thread/1441654</link>
      <description>&lt;!-- [DocumentBodyStart:6085ed0c-b7ba-4200-bcaa-9f16d99d79f3] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;where can I find "/CatalystScripts/Java_DynMenusSelectedCSS.js"&amp;gt; it is part of container.html in default menu but i cannot find the js&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:6085ed0c-b7ba-4200-bcaa-9f16d99d79f3] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">dreamweaver</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">javascript</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">css</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">menu</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">java_script</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">menu-problems</category>
      <pubDate>Wed, 02 Apr 2014 07:41:48 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1441654</guid>
      <dc:date>2014-04-02T07:41:48Z</dc:date>
      <clearspace:dateToText>7 months 2 weeks ago</clearspace:dateToText>
      <clearspace:messageCount>6</clearspace:messageCount>
      <clearspace:replyCount>5</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>HTML 5 Offline App Creation for Product walkwalkthrough Demo</title>
      <link>https://forums.adobe.com/thread/1436374</link>
      <description>&lt;!-- [DocumentBodyStart:3c3c8499-6198-446a-a0ea-c0e161a509ab] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;div&gt;&lt;p&gt;Hi,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Can we create offline App by using HTML 5, CSS, Java Scipt. But this app should be offline controll key. &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span&gt;Please see this link: &lt;/span&gt;&lt;a class="jive-link-external-small" href="http://vmwarewalkthroughs.com/VDS/" rel="nofollow" target="_blank"&gt;http://vmwarewalkthroughs.com/VDS/&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;The folder structure of this page is&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;config, theme, www and offline index file and preview index.html file.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;any&amp;nbsp; content and images related changes has been done in config folder,&amp;nbsp; theme ralated changes has been done in theme folder, www folder is the&amp;nbsp; main template.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Can&amp;nbsp; you please let me know, how it will be built initially, i mean what&amp;nbsp; knowledge should be for this. I have not finding a proper way to built&amp;nbsp; this but this app folder contain html, css, js files.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks,&lt;/p&gt;&lt;p&gt;Susanta&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:3c3c8499-6198-446a-a0ea-c0e161a509ab] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">jquery</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">html</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">dreamweaver</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">javascript</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">css</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">html5</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">webapp</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">java_script</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">e-commerce</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">large_product_view</category>
      <pubDate>Wed, 26 Mar 2014 09:32:23 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1436374</guid>
      <dc:date>2014-03-26T09:32:23Z</dc:date>
      <clearspace:dateToText>7 months 3 weeks ago</clearspace:dateToText>
      <clearspace:messageCount>1</clearspace:messageCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Paid bookings form... HELP!</title>
      <link>https://forums.adobe.com/thread/1434507</link>
      <description>&lt;!-- [DocumentBodyStart:9d340666-0564-4e8e-8dbc-47ea02f2e604] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I've created an events webapp that incorporates a paid bookings form based on a tutorial from kiyuco. I need the paid form to allow me to book multiple spots as well as charge a specific amount based on a variable I select when I set the event up. I realize I would use javascript to do this but im fairly new to coding and havent learned how to setup the scripts. I found a tutorial on multiple seats but havnt seemed to make it work. Any help would be appreciated.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:9d340666-0564-4e8e-8dbc-47ea02f2e604] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">form</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">coding</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">webapp</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">java_script</category>
      <pubDate>Sun, 23 Mar 2014 21:13:27 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1434507</guid>
      <dc:date>2014-03-23T21:13:27Z</dc:date>
      <clearspace:dateToText>7 months 3 weeks ago</clearspace:dateToText>
      <clearspace:messageCount>1</clearspace:messageCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Using special characters in photogallery mod. description</title>
      <link>https://forums.adobe.com/thread/1428009</link>
      <description>&lt;!-- [DocumentBodyStart:f552bea4-e9b8-453e-8bd8-d7bda0ac1dc2] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;When writing text into the description field for a given image in a photogallery module, you are unable to use a " as text since it closes the description text and effectively ends the description at the previous character. I am looking for a work-around solution to acheive the use of " as text in an image description.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Who's got the moxy to make this work?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:f552bea4-e9b8-453e-8bd8-d7bda0ac1dc2] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">photo_gallery</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">descriptions</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">photogallery_module</category>
      <pubDate>Fri, 14 Mar 2014 16:45:49 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1428009</guid>
      <dc:date>2014-03-14T16:45:49Z</dc:date>
      <clearspace:dateToText>8 months 2 hours ago</clearspace:dateToText>
      <clearspace:messageCount>2</clearspace:messageCount>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Getting around mandatory e-mail field in BC form.</title>
      <link>https://forums.adobe.com/thread/1421236</link>
      <description>&lt;!-- [DocumentBodyStart:9f8d22d9-b8cf-43b6-bc43-45e76b1bc187] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;The scenario.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Our database is for referring companies, not end user clients. End users we deal with by phone and paper files, not through the system. Our industry is regulated and you have to track information carefully.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;We have created a simple form for our referring companies to put in their referral information. &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;The problem is that they will never know the client's email. How can I bypass the mandatory email field? I know html and CSS but not Java so if it's complicated please steer me to any resources you know about that will spell it out.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I was wondering if we could automatically generate a dummy email [firstname,lastname]@dummyemail.com. This would alert us that we don't have the real e-mail but would let the file be generated. We could then hide the field so the referring company doesn't see it.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;But the problem is: How?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Please HELP!&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Cheers all,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;John&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:9f8d22d9-b8cf-43b6-bc43-45e76b1bc187] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">form</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">bc</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">webform</category>
      <pubDate>Wed, 05 Mar 2014 16:21:46 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1421236</guid>
      <dc:date>2014-03-05T16:21:46Z</dc:date>
      <clearspace:dateToText>8 months 1 week ago</clearspace:dateToText>
      <clearspace:messageCount>3</clearspace:messageCount>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Help with tweaking blog and webform built in Adobe Muse</title>
      <link>https://forums.adobe.com/thread/1420182</link>
      <description>&lt;!-- [DocumentBodyStart:f28013cd-d5da-4bac-9fc6-3623de59731f] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi there.&lt;/p&gt;&lt;p&gt;A client of mine had a 3rd party do a re-design (in Adobe Muse) of their current site in BC. Managed to get most of the re-design all launched except for a couple of tweaks that have been giving me major headaches.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Firstly, is it possible to edit the site that was built in Muse directly from BC itself and not Muse? I don't have a Muse subscription.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;If so, I need help with the following that I have tried to tweak myself, but just can't find out how. BTW I am not a developer but muddle my way around editing existing code etc etc.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;1. On the contact us page, I need to add an additional field to the webform. A radio button question: "preferred contact method". Phone or email. I know how to add the field to the webform in BC. Apparently Muse forms don't support radio buttons? Anyway, I can't figure out how to edit the source on the contact page&amp;nbsp; to include the fields that I add to the webform.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span&gt;2. Some minor tweaks to the layout of the blog page. I need to make the horizontal and vertical lines meet up and not have a space. Also, the left column width needs to be decreased and the right column width increased. Basically I need the current live blog &lt;/span&gt;&lt;a class="jive-link-external-small" href="http://www.robertsonburns.com.au/blah-blog" rel="nofollow" target="_blank"&gt;http://www.robertsonburns.com.au/blah-blog&lt;/a&gt;&lt;span&gt; to look like the previously coded muse blog (which is not live) &lt;/span&gt;&lt;a class="jive-link-external-small" href="http://robertsonburns-test5.businesscatalyst.com/blah.html" rel="nofollow" target="_blank"&gt;http://robertsonburns-test5.businesscatalyst.com/blah.html&lt;/a&gt;&lt;span&gt; which it does, except for these two minor issues.&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Would appreciate anyone's help and/or advice.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:f28013cd-d5da-4bac-9fc6-3623de59731f] --&gt;</description>
      <pubDate>Tue, 04 Mar 2014 05:55:33 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1420182</guid>
      <dc:date>2014-03-04T05:55:33Z</dc:date>
      <clearspace:dateToText>8 months 2 weeks ago</clearspace:dateToText>
      <clearspace:messageCount>2</clearspace:messageCount>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>workflows and javascript</title>
      <link>https://forums.adobe.com/thread/1416516</link>
      <description>&lt;!-- [DocumentBodyStart:bd44e987-0ca7-42cc-9e12-dcd65e0f40bc] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;My client uses BC as their intranet and a requirement they have is to update certian pages at regular intervals, say 3 months after it is first published and there after.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;My only thought was to have an expiry date which would trigger an email to be sent to all admin users.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Is there a way to achieve a similar thing using a wokflow that is somehow triggered using javascript?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Regards&lt;/p&gt;&lt;p&gt;David&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:bd44e987-0ca7-42cc-9e12-dcd65e0f40bc] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">jquery</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">javascript</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">workflow</category>
      <pubDate>Thu, 27 Feb 2014 05:20:42 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1416516</guid>
      <dc:date>2014-02-27T05:20:42Z</dc:date>
      <clearspace:dateToText>8 months 2 weeks ago</clearspace:dateToText>
      <clearspace:messageCount>1</clearspace:messageCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Application Caching Manifest</title>
      <link>https://forums.adobe.com/thread/1411539</link>
      <description>&lt;!-- [DocumentBodyStart:a09699ec-6b9d-4565-a504-f782b1eefd8a] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I'm trying to implement caching on my BC site to enable it to be viewed offline. &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I have done this with Apache2 by adding &lt;/p&gt;&lt;p style="font-size: 12px; font-family: 'Andale Mono'; color: #29f914; background-color: #000000;"&gt;AddType text/cache-manifest .manifest&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;to the &amp;lt;Directory&amp;gt; directive for an enabled site.&lt;/p&gt;&lt;p&gt;Then a manifest is created with what should be cached.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;FInally, in the HTML for every page you want cached you indicate the page should be cached with:&lt;/p&gt;&lt;p style="font-size: 12px; font-family: 'Andale Mono'; color: #29f914; background-color: #000000;"&gt;&amp;lt;html class="html" manifest:"sytoolkit.appcache"&amp;gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Then you can browse the site while offline.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I'm working with a team to create an web application for mobile. BC has been chosen as the back end platform because of its feature set and tight integration with Adobe Muse.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I had a live help session and I was told that this is not managable by the end user without extensive custom HTML and JS. &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Has anyone else done this or something similar?&lt;/p&gt;&lt;p&gt;Robert&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:a09699ec-6b9d-4565-a504-f782b1eefd8a] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">cache</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">html5</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">manifest</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">webapp</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=4740">bc</category>
      <pubDate>Thu, 20 Feb 2014 18:40:54 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1411539</guid>
      <dc:date>2014-02-20T18:40:54Z</dc:date>
      <clearspace:dateToText>8 months 3 weeks ago</clearspace:dateToText>
      <clearspace:messageCount>5</clearspace:messageCount>
      <clearspace:replyCount>4</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
  </channel>
</rss>

