Hi,
You need to do just few small changes in the file "980.css" which you can find here:
"~/Themes/"your theme name here"/Content/CSS/980.css".
So lets starts with the changes.
Open file 980.css and find this line:
.header-selectors-wrapper > div
Then inside the brackets change the property "float:left;" to "float:right;" and "margin:0 10px 0 0" to "margin:0 0 0 10px".
Then find the line:
.search-box and change "clear:right;" to 'clear:left;'.
Then do not forget to save the changes. That must work for you.
Hello there,
To achieve the effect you want you need to make some style changes. I`ll help you with this so don`t worry about it.
First you need to limited the cells width to desirеd value (the tab navigation buttons).
You can set this here:
~Themes/Nitro/Content/CSS/480.css
In the file 480.css find this code:
.ui-tabs .ui-tabs-nav li{
float: left;
margin: 0 2px 0 0;
}
.ui-tabs .ui-tabs-nav li{
float: left;
margin: 0 2px 0 0;
max-width:150px;
}
.ui-tabs .ui-tabs-nav li{
float: none;
display:inline-block;
margin: 0 2px 0 0;
max-width:150px;
}
.ui-tabs .ui-tabs-nav li a{
}
.ui-tabs .ui-tabs-nav li a{
display: table-cell;
height: 50px;
max-width: 130px;
vertical-align:middle;
text-align:center;
padding:0 5px;
}
Well it`s a difficult issue. Maybe if I had some access to the page, I should say for sure.
I think you must change your markup and embed the video by using <object> and <param> elements, or <video> and <source> (for this option you might use Flash-free support - https://github.com/etianen/html5media/wiki ).
Set the z-index of the div holding the flash to 1 and the z-index of the div holding the nav to 2 (for example).
In the flash element:
Look for the flash <object> tag and add the following code:
<param name="wmode" value="transparent">
Hello there!
Thank you for reporting this. It is fixed now.
I already answered your ticket and what files to update to get the fix.
Please do not duplicate forum posts and tickets!
Hello!
So if you want to disable the quick view popup you need go to administration, and turn the plugin off.
To kept the magnify button you need to find the
Themes/ArtFactory/Views/Shared/_ProductBox.cshtml file.
Find the code below
<div class="description-wrapper">
<a class="description" href="@Url.RouteUrl("Product", new { SeName = Model.SeName })">
@Html.Raw(Model.ShortDescription)
</a>
</div>
<div class="quick-view-button">
<a href="@Url.RouteUrl("Product", new { SeName = Model.SeName })"></a>
</div>
<div class="description-wrapper">
<a class="description" href="@Url.RouteUrl("Product", new { SeName = Model.SeName })">
@Html.Raw(Model.ShortDescription)
</a>
<div class="quick-view-button">
<a href="@Url.RouteUrl("Product", new { SeName = Model.SeName })"></a>
</div>
</div>
.item-box:hover .quick-view-button {
opacity: 1;
}
.product-grid .quick-view-button {
bottom: 16px;
left: 50%;
margin: 0 0 0 -15px;
position:absolute;
}
.quick-view-button a {
background: url("../img/icon-quick-view.png") no-repeat scroll center center rgba(0, 0, 0, 0);
height: 31px;
opacity: 0.7;
padding: 0;
text-indent: -9999px;
transition: all 0.15s ease-in-out 0s;
width: 31px;
display:block;
}
I`m sending you full code that you have to change.
Find this lines:
.item-box .product-rating-box {
display: none;
}
;
.item-box .product-rating-box {
display: inline-block;
}
.product-review-box {
display: inline-block;
margin: 0 0 5px;
}
.product-review-box .rating {
width: 85px;
height: 16px;
background: url(../img/icon-rating-empty.png) repeat-x;
}
.product-review-box .rating div {
height: 16px;
background: url(../img/icon-rating-full.png) repeat-x;
}
;
.product-rating-box {
display: inline-block;
margin: 0 0 5px;
}
.product-rating-box .rating {
width: 85px;
height: 16px;
background: url(../img/icon-rating-empty.png) repeat-x;
}
.product-rating-box .rating div {
height: 16px;
background: url(../img/icon-rating-full.png) repeat-x;
}
Hello there!
By design there are no rating stars in the item boxes.
But if you want to customize your theme you need to change some styles in document "styles.css".
What you need to do is to find following styles into "styles.css" document
.product-review-box
and change it with:
.product-rating-box;
This might be on line 2541 to 2550.
And finally go to line 1970 or find
.item-box .product-rating-boxand change the property from: display:none; to display:inline-block;;
Hi Rob!
I have made test but it does not act like that to me.
This must be browser cache.
Hello there UserThomas!
There is no way to reduce all the spaces and sizes in the theme, at least there is no easier way.
The only way is by extraordinary effort // rewriting all the styles .