03/24/2015 at 12:39 pm
#324361
Keymaster
@ Dani
re: How can I make things like “Clear Search” and “View All” buttons?
You can use CSS to make the “Clear Search” display as a button. It is classed as button btn
so as to use any buttons CSS the theme may have.
Styling the “View All” link is a little more problematic since it is not classed but selecting it should still be possible using this method. So a selector like this should work:
#cn-tile-plus a[href$="view/all/"] {
/*css*/
}
After a quick Google search, I found a nifty little tool you can use to create the CSS for a button:
re: Where can the heading part of the php code be found? (Meaning in what file?)
Sorry, I do not follow… what do you mean by the heading part?
Hope that helps!