ContributionsMost RecentMost LikesSolutionsRe: Utilising blog layout for a new page Hi Kev_B - In the admin console choose to manage the new blog you created, then go to Content -> Custom Pages and set your new Blog Page there. This will only save it as the layout for the blog you are managing. Re: Masonry Message List - Number of columns There is a cleaner way of doing this for responsive skins. In the base scss file there are these lines // Small layouts @include masonry(phone-min, 1); // Medium layouts @include masonry(phone-to-tablet, 2); // Large layouts @include masonry(tablet-to-desktop, 3); // X-large layouts @include masonry(desktop-and-bigger, 4); to change to a 3 column layout for desktop (X-large) you only need to add this line to your style.scss file // X-large layouts @include masonry(desktop-and-bigger, 3); and you are good to go! Re: Inherited components in responsive skin wrapper If you go to the Properties Tab you will see a field "Based on" which tells you what is the parent skin. I think what you want to do is hit Use Default button under Page Head Bottom - that should delete the one you have in this particular skin and use the parent's instead. Re: Inherited components in responsive skin wrapper That probably means that your child skin has a "Page Header Bottom" set and is blocking the inheritance. In Studio, do you have anything in Page Header Bottom? Re: Include a style which is only available on page load in Studio EditorI don't think you can. The Lithium SASS compilation is happening before your class is available.Re: Badges v. 1.1 and the component title I found this too when upgrading a customer. I created a custom component to get around it: <div class="lia-panel"> <div class="lia-panel-heading-bar-wrapper"> <div class="lia-panel-heading-bar"><span class="lia-panel-heading-bar-title">Achievements</span> </div></div> <@component id="badges.widget.user-badges-list"/> </div> Re: Subscribe Button Not to disagree with Doug, but I would suggest a differenty way. First, you can add to the menu but not the menu bar. Adding subscribe to the menu is unnecessary as it is already there. The menu bar is not editable by any means. Second, here is how I would acheive what you are looking for. 1) Add your new component directly above the menbar component. In this example, my custom component is called "custom-add-to-my-places" 2) Add css to float the custom component and the menu bar to the left. You may need to adjust the width of menu bar: .lia-component-custom-add-to-my-places { float: left; } .lia-menu-bar-top { float: left; width: 97%; } 3) You now have the look of the two items living in the same line. In my case, I styled the subscription as a "favorites" heart to acheive an all icon look: Re: Avatar upload - crop image to a set size Hi sunny_mody - You can do this in a 2 step process. First create a custom component that you will place on the upload avatar page <!-- --> <@liaAddScript> (function($) { $(document).one("LITHIUM:updateCoordinates",function() { var image = $(".lia-image-cropper-source-container > .lia-quilt-column-alley-left > img"); var img = new Image(); function addAspectRatio() { image.data("Jcrop").setOptions({aspectRatio: 1}); } function addLater() { if (!image.data("Jcrop")) { window.setTimeout(addLater, 50); } else { addAspectRatio(); } } img.onload = addLater; img.src=image[0].src; }); })(LITHIUM.jQuery); </@liaAddScript> Then, in the skin properties, set the avatar height and width to be the same: size.pixel.avatar_profile_h = 125 size.pixel.avatar_profile_w = 125 size.pixel.avatar_message_h = 50 size.pixel.avatar_message_w = 50 You are now good to go! Re: Changing Menubar text Our text keys are not node aware. They would know the difference between a root message and a comment, an Idea and a Blog, but not one Idea from another Idea. Best bet might be using a psuedo class like: options-menu:after{ content: 'Comment Options'; } Re: Question on "user_has_role"Like Paolo says, we would need to see how user_has_role is defined. It should look something like: <#assign user_has_role = .....