ContributionsMost RecentMost LikesSolutionsRe: REST API. Getting error during posting new message iahiqosolutions wrote: Hello AllenS, The HTML code that you suggested is working perfectly well, but there is a moment which is not clear for me: How can I switch HTML set that is currently used by Lithium(superSimpleHTMLTags, simpleHTMLTags, basicHTMLTags)? Can I create my own HTML tag set?(for example, I want to allow to use each user tag "img") Hi iahiqosolutions, I'm glad to hear that worked out! Changing which tags the HTML parser allows is something the Lithium team will have to adjust for you on the backend. If you file a support case with the changes you would like to make we can go ahead and set that up on stage for you to review. You can submit a support case by accessing the Lithium support portal on the Lithosphere or by e-mailing support@lithium.com directly. Have a great day! Re: REST API. Getting error during posting new message Hi iahiqosolutions, It looks like the HTML you are using isn't valid. When I when put it through an HTML validator it returns several errors, specifically around putting a p tag inside of another p tag. When I use this in a normal post on one of our test communities I get the same error and the HTML is changed to look like this: <p class="bold">Text of description.</p> <p>Text of description.</p> <p class="italic">Text of description.</p> <p>Text of description.</p> <p class="underline">Text of description.</p> <p>Text of description.</p> <p>Text of description.</p> You are correct that we do have an HTML parser that limits what tags users can use in posts. However, there is also a validation step that validates the HTML and removes anything that is invalid (such as HTML that is incorrectly formatted or tags that don't exist). This is the cause of the error you are running into. Can you try using the above HTML I pasted and seeing if that works out? Have a great day! Re: Replacing search button & PM inbox icon Hi Cleo, I'm going to reverse your questions here because one of them is a bit easier to accomplish than the other and I want to highlight it first for that reason. 2) Replacing the PM icon: This is possible in Studio. The assets for PM icon are called icon_notes_mail (no new messages) and icon_notes_mail_blink (new messages). You will need to have the icons you would like to replace these with saved on your computer. To do this: 1) Log in as an administrator on stage 2) Navigate to Studio 3) Click the Community Style tab 4) Click the skin you would like to edit. If there is a desktop version, click through to the desktop version. 5) Click the Images tab 6) Find the asset you would like to edit and click the radio button next to it to select that asset 7) Click the Browse button to find the asset you would like to upload on your computer 8) After selecting the new asset from the files ony our computer, click the Upload button to upload your preferred asset in place of the original one. Just repeat this process for each icon and that will be that! Once you're done, you will need to go to the Versions tab and queue the changes for production in order to have this deployed. 1) Replacing the Search button: This is also possible, but requires some additional work beyond just uploading a new asset. The search button is generated through CSS rather than being an image. There are a couple of ways you could go about making changes to this, the best of which would ultimately be up to you and your design team. In playing around with this, I just changed the following and found I got a pretty decent effect out of it: #lia-searchform.SearchForm input#submitContext.lia-button #lia-searchform.SearchForm input#submitContext.lia-button:hover The first line is the standard state for the Search button, while the second one controls what it looks like when someone hovers over it. Using those two classes, you can change just about anything about the button, from the background colour to the colour of the text to the background image to the button shape itself. To apply this to the skin, you just need to edit the CSS for the skin, which is also done in Studio. Using the steps I provided above, instead of clicking the Images tab after selecting your skin, you would click the CSS tab and insert your CSS, then save the changes. Unfortunately, I'm no CSS wizard like many of the great people here at Lithium, so others may have better suggestions on this than I do. Hopeully this at least gives you a starting point though :) Have a great day! Allen