Hi Tarun, thanks for your quick response.
I do not have access to quilt, I do need to add some css styles in the active skins.
We are using the standard search component (crmsupport.widget.crm-support-cases-tabs) for our custom community portal.
Of course I don' t have access to the id or class selectors that are used for the input box of the standard search component, so I use the browser inspect mode to find the selectors. When inspecting the element that I need to hide,Chrome inspector gives me this selector, in the below code I need to hide the create support case button.
<div class="lia-button-group">
<span class="lia-button-wrapper lia-button-wrapper-primary">
<a class="lia-button lia-button-primary create-support-link" id="link_8" href="/t5/forums/postpage/board-id/%40support"><span>Create Support Case</span></a></span>
</div>
How do I reference (select) the input element in my CSS skin file based on the above?
in the active skin I added the below CSS:
select[id="link_8"]{
visibility: hidden;
display:none;
}
But it did not work, I'm not sure how to reference to the standard component from one of the active skins.
Could you help me on this