ContributionsMost RecentMost LikesSolutionsRe: Mobile CSS udpates One way we work with our CSS on our mobile product is to use tools like Chrome's developer tools to override the user agent: https://developers.google.com/chrome-developer-tools/docs/mobile-emulation#emulate-device-viewports (See "Emulating the User Agent") Once you refresh the page, you can then use Chrome's Developer Tools to inspect the elements you're interested in. You can also force the device view of our product by adding "?device-view=mobile" to the URL like this: http://h30434.www3.hp.com/t5/Android-Tablets-e-g-HP-Slate-7/bd-p/android?device-view=mobile You can switch back to the desktop view by clicking "Full" in the footer of the mobile pages or adding "?device-view=desktop" to the URL. Hope that helps. Re: Styling custom components Hi kentgilliam, try wrapping your custom component's content with the following HTML: <div class="lia-panel lia-panel-standard"> <div class="lia-decoration-border"> <div class="lia-decoration-border-top"><div></div></div> <div class="lia-decoration-border-content"> <div> <div class="lia-panel-heading-bar-wrapper"> <div class="lia-panel-heading-bar"><span class="lia-panel-heading-bar-title">Panel Heading</span></div> </div> <div class="lia-panel-content-wrapper"> <div class="lia-panel-content"> <p>Your custom content here.</p> <p>Optional:</p> <div class="lia-text"> <p>(Content in this div will have margins and some text formatting because of the "lia-text" class.)</p> </div> </div> </div> </div> </div> <div class="lia-decoration-border-bottom"><div></div></div> </div> </div> You'll be replacing everything in the "lia-panel-content" div with your content, as well as editing "Panel Heading" to the panel heading title you want. I believe the reason Custom Content was suggested is because it has the decorative panel wrapper by default, and can be toggled off with panel="false" in the XML. (See my reply here: http://lithosphere.lithium.com/t5/Customer-Connection-Private/Custom-Content-HTML-Codes/m-p/31385#M1651) Hope that helps. Re: Who is in my community in real time? There should be a "View All" link at the bottom of the "Users Online" section. If you click it, it will take you to a page similar to this: http://lithosphere.lithium.com/t5/forums/usersonlinepage You can then click on the usernames to see more info about each user. Re: Fix for IE8 Hmm. It seems to work for me in IE8 and IE9 when I add the closing </a> tag: http://jsfiddle.net/Krf64/ (with closing tag) vs. http://jsfiddle.net/Krf64/1/ (without closing tag) I would also remove the <html>, <head>, and <body> tags since this banner module is placed within an html page. Re: Fix for IE8 From what I can tell, the anchor tag (link) for "Adults Living with Type 2" is missing a closing tag (</a>) that is causing the banner to render differently between the browsers.