div.exhibit-facet-value-count {
display: none;
}
David
group-count { display: none; }
.exhibit-views-unplottableMessage { display: none; }
.exhibit-views-header { display: none; }
.exhibit-collectionView-header { display: none; }
div.exhibit-toolboxWidget-popup { display: none; }
div.exhibit-facet-value-count { display: none; }
div.exhibit-color-legend { display: none; font-size:12px;}
It gives the 'loading' image but then shows all (cloud facet and other
facets) but the actual thumbnail view.
What is it about IE that makes this css not work? How can I get it so
that not displaying the value count in IE at least displays the view?
Here's the link i'm referring to http://web.mit.edu/physics/test/people/faculty/index.html
(the # in question is the 119 items listed directly above the start of
the thumbnail view)
Thanks for any help.
Kimeee
Kimeee,
Could you please email the mailing list (simile-...@googlegroups.com)? I can't find time these days to answer individual support question.
Best,
David
kimeee wrote:
I am trying to fix a similar problem, but instead of the facet values,
I'm trying to hide the items value from the main view.
I created a thumb view for our faculty directory but we don't want the
items value count to show.
I added these css rules to my page, but it doesn't work in IE7.
/* // to hide Items filtered from 125 originally (Reset All Filters) //
*/
.exhibit-collectionView-group-count { display: none; }
.exhibit-views-unplottableMessage { display: none; }
.exhibit-views-header { display: none; }
.exhibit-collectionView-header { display: none; }
div.exhibit-toolboxWidget-popup { display: none; }
div.exhibit-facet-value-count { display: none; }
div.exhibit-color-legend { display: none; font-size:12px;}
It gives the 'loading' image but then shows all (cloud facet and other
facets) but the actual thumbnail view.
What is it about IE that makes this css not work? How can I get it so
that not displaying the value count in IE at least displays the view?
Here's the link i'm referring to http://web.mit.edu/physics/test/people/faculty/index.html
(the # in question is the 119 items listed directly above the start of
the thumbnail view)
Thanks for any help.
Kimeee
On Apr 22, 12:47 am, David Huynh <dfhu...@alum.mit.edu> wrote:
shireesha06 wrote:
Hi does any one know like how to make a list facet that should not
display the facet valuecountin the left side of each value in the
facet.
You can use a CSS rule to remove them:
div.exhibit-facet-value-count{
display: none;
}
David