Themes In V4

Hello, just installed cs-cart 4.1.2 and noticed there are NO themes, just basic ones…



Im curently using a theme template on v2.2.4, will it import in v4 ?

Short awnser, NO

Alan

Hi @Dstalker,



Please let me know what theme is indispensable in 2.x ?

In 4 you can do it fast.



I can help ;) for free if will not require more time from my side



Regards,





Valentin

[color=#808080][size=2]part of hungryweb.net[/size][/color]

Hi Vali, very generous of you :)



I use the theme called “Lingerie”



Thanks a lot!

I guess are you using 4.1.2?





Valentin

[color=#808080][size=2]part of hungryweb.net[/size][/color]

Thats correct.

You can read this: Dive into CS-Cart 4 Customization: Themes, Presets, and Layouts | eCommerce Blog on Running an Online Marketplace

Hi @Dstalker

This is ok or need something changed?



This theme is already done and ready to ship ;)





Valentin

[color=#808080][size=2]part of hungryweb.net[/size][/color]

Awesome, looks pretty good :)

Please follow [url=“Free Theme: Lingerie - Third-Party Add-ons - CS-Cart Community Forums”]Free Theme: Lingerie - Third-Party Add-ons - CS-Cart Community Forums





Valentin

[color=#808080][size=2]part of hungryweb.net[/size][/color]

CS cart V 4.1.3

website: www.shishastar.ch

I am looking for a way to disable be the mouse over effect. In the products list grid view I see the quick view button and the box with shadow around the product picture only when the mouse is over the product picture. Instead i want the box and the quick details to be always available on all the products.



Example site: http://www.shisha-king.ch



i wish to have this look for product grid. If you guys have anyother options even that is welcomed.



Thanks in advance

Vipin@hotmail.ch,



If you use the my_changes add-on to extend your styles, please add following ones:



.tygh-content .multicolumns-list td .quick-view {
visibility: visible;
}
.tygh-content .multicolumns-list td .product-cell-wrapper {
background-color: #ffffff;
box-shadow: 0 0 10px #cccccc;
}
.tygh-content .multicolumns-list td .buttons-container-item {
padding: 13px 13px;
}




Hope it will help

ecom[quote name='eComLabs' timestamp='1396258840' post='180514']

Vipin@hotmail.ch,



If you use the my_changes add-on to extend your styles, please add following ones:



.tygh-content .multicolumns-list td .quick-view {
visibility: visible;
}
.tygh-content .multicolumns-list td .product-cell-wrapper {
background-color: #ffffff;
box-shadow: 0 0 10px #cccccc;
}
.tygh-content .multicolumns-list td .buttons-container-item {
padding: 13px 13px;
}




Hope it will help

[/quote]





Thank you so much. It worked like a charm.

http://shishastar.ch



Please check the view now. I see the Quick view and Add to cart button. But as you can see the add to cart is in a gray box, i dont want this effect. i wish that back ground color to be white. Even if the quick view/more details and Add to cart if in the same line it would be Ok.



Thanks in advance awaiting for the reply

Hi,

Please try .tygh-content .multicolumns-list td .quick-view {
display: block;
float: left;
visibility: visible;
width: auto;
}
.tygh-content .multicolumns-list td .buttons-container-item {
background: none;
border: none;
display: block;
float: right;
padding: 6px 0 0;
margin-top: 0;
}
.tygh-content .multicolumns-list td .buttons-container-item .button-submit-action{
margin-right:0;
}




I hope that helps,





Valentin

[color=#808080][size=2]part of hungryweb.net[/size][/color]

[quote name='Vipin@hotmail.ch' timestamp='1396284898' post='180568']

http://shishastar.ch



Please check the view now. I see the Quick view and Add to cart button. But as you can see the add to cart is in a gray box, i dont want this effect. i wish that back ground color to be white. Even if the quick view/more details and Add to cart if in the same line it would be Ok.



Thanks in advance awaiting for the reply

[/quote]



Just change the styles of “.tygh-content .multicolumns-list td .buttons-container-item” to:



padding: 0px 0px;
background: #fff;
border: none;




Thanks.

It works fine. but only in Google chrome and Firefox shows the changes and IE remains the same old view



Take a look. www.shishastar.ch

Clear your browser's cache then. You newer users will more than likely not have css cached and will pick up the changes.

[quote name='tbirnseth' timestamp='1396415352' post='180707']

Clear your browser's cache then. You newer users will more than likely not have css cached and will pick up the changes.

[/quote]

I even tried resetting ie completely didn't work at all

Then you're info is being overwritten by something in the IE specific css. If the css is available in one browser, then it's available in all. However, there are IE specific css/less files that could be further qualifying your selectors. No way to tell without someone examining the specific elements in IE debugger (and that's not me).