
02-17-2016, 09:50 PM
|
 |
Senior Member
|
|
Join Date: Dec 2009
Posts: 419
|
|
You're welcome, the thing with selectors is that they're very flexible and in this case there's a rule in the default theme that sets the font size of div's in the "Top Panel" (Items Count, View As and Sort By)
Code:
div.ecwid-results-topPanel div {
color: #333;
font-size: 11px;
font-weight: 400;
display: inline-block;
}
You could have used that selector but as you just wanted to change "View As" panel div's, it was "div.ecwid-results-topPanel-viewAsPanel div".
|