Close

Profile: UserThomas

Avatar

User posts

Bugs
11 years ago

UserThomas wrote:
New bug:  not sure if I should post this here or on the product ribbons forum, but here it is.


It also doesn't appear to use the "text" box correctly. It just displays a small red box.

Bugs
11 years ago

UserThomas wrote:
New bug:  not sure if I should post this here or on the product ribbons forum, but here it is.

Bugs
11 years ago

New bug:  not sure if I should post this here or on the product ribbons forum, but here it is.

The ribbons "position" setting doesn't seem to control anything in this theme.  It always shows the ribbons in the bottom middle of the small and big images regardless of the setting.

Bugs
11 years ago

UserThomas wrote:
When I copy the code in the style.css (lines 4216 to 4476) file to my custom.css file, the quickview does not correctly invert the colors. It looks like only the background color does not change on hover. It should turn from the set color to white.

I don't make any changes to the code, just copy paste. If I do change the color hex, the same things happens, just with the new color.

Other buttons work fine ie: All the buttons on the shopping cart page (update shopping cart, continue shopping, checkout...)


Getting the same issue with the mini-cart Go To Cart button.

Bugs
11 years ago

When I copy the code in the style.css (lines 4216 to 4476) file to my custom.css file, the quickview does not correctly invert the colors. It looks like only the background color does not change on hover. It should turn from the set color to white.

I don't make any changes to the code, just copy paste. If I do change the color hex, the same things happens, just with the new color.

Other buttons work fine ie: All the buttons on the shopping cart page (update shopping cart, continue shopping, checkout...)

11 years ago

by "disappear" I mean, drop down to where it's above the footer.  It's formatting changes correctly, it just stays in the left column.  

11 years ago

I'm a little familiar with css and have been able to make very basic changes without having to ask. You guys have been very helpful so far and I really appreciate it. I do not want to change much and once it is done, I wont be making any changes for a very long time. I just need to make it work for my customers and clients.

All I want is for the category/manufacturer/filter column to be put on the left side of the screen.  

When using the above code, that column just does not "disappear" when reducing the screen size, as it does when the column is on the right side.  

11 years ago

Support wrote:
Also, how do I move everything that shows up in the right column over to the left?  EX: category lists, sorting options, manufacturers list...

I also want to switch the product information with the picture. I want the picture on the left and info. on the right.

What do I need to change?


Hi,

Please use the following css in order to make your changes.

@media screen and (min-width: 1001px){
.product-details-page .overview {
margin-left: 620px;
margin-right: 0;
}
}
@media screen and (min-width: 769px){
.ui-tabs {
float: left
}
}
@media screen and (min-width: 769px){
.product-details-page .overview {
float: right;
}
}
.side-2 {float: left;}
.center-2 {float: right;}

Hope that helps!



I have successfully integrated my custom.css file and it is accepting style changes.  When I enter this into the custom.css and adjust my browser below 1001px to check the responsive part, the page doesn't load correctly.  This only happens on the category pages with sub-categories in it.

The ajax filters Title blocks are smashed on the left side and the sub-categories are VERY small on  the far fight.  It's like the filters vertical bar is taking up all the screen room.

Bugs
11 years ago

Support wrote:

Thank you for your feedback. This is a typo with the resource name. You can easily fix it if you add the following two resources with the following values:

key: sevenspikes.themes.playground.common.goto value: Go to ...
key: sevenspikes.themes.playground.common.gotopage value: Product's page

This worked but it doesn't look like it was corrected in 3.3.

Thanks again guys for the great support!

Bugs
11 years ago

That worked great! Thanks for the quick help!

One last question on this topic...  do i still need the

 Html.AppendCssFileParts("~/Themes/Allure/Content/CSS/custom.css");

in the Head.cshtml file?