How Can We Move the Cluster Facet Display from the Right to the Left ?
- Article Type: General
- Product: MetaLib
- Product Version: 4
Description:
How can we move the cluster facet display from the right to the left of the screen ?
Resolution:
Cluster Facet position is controlled by the below section of metalib.css:
Right Display
#record_cluster_wrap{width:77%; vertical-align:top; margin-bottom:0.5em; float:left}
#contentwrap_clustering { width:22%; float:right; background-color:#ECCCD9; margin-top:0px; padding-bottom:0.3em;}
.cluster_container{background-color:#ECCCD9;width:100%; font-family:Arial; clear:left; margin-bottom:12px;}
.record_list_header div.containerMiddle div.alignRight {background:transparent;float:right; width:35%;}
.record_list_header div.containerMiddle div.alignLeft {background:transparent; float:left; width:64%;}
In order to display Cluster Facets on the left, use this instead:
#record_cluster_wrap{width:77%; vertical-align:top; margin-bottom:0.5em; float:right}
#contentwrap_clustering { width:22%; float:left; background-color:#ECCCD9; margin-top:0px; padding-bottom:0.3em;}
.cluster_container{background-color:#ECCCD9;width:100%; font-family:Arial; clear:right; margin-bottom:12px;}
.record_list_header div.containerMiddle div.alignRight {background:transparent;float:left; width:35%;}
.record_list_header div.containerMiddle div.alignLeft {background:transparent; float:right; width:64%;}
- Article last edited: 10/8/2013