Skip to content

Instantly share code, notes, and snippets.

View ae-elaine-axis's full-sized avatar

ae-elaine-axis

View GitHub Profile
@ae-elaine-axis
ae-elaine-axis / CSS
Created September 12, 2016 18:00
How to edit color of "Enter shipping address" section in Ecwid
div.ecwid-form {
background-color: #fae9f2;
}
div.ecwid-Checkout-ShippingAddress-top {
background-color: #fae9f2;
}
@ae-elaine-axis
ae-elaine-axis / CSS
Last active September 12, 2016 19:37
Hidden prices on Category page
div.ecwid-productBrowser-price {
display: none;
}
@ae-elaine-axis
ae-elaine-axis / CSS
Created September 12, 2016 18:13
How to edit font-size for Product name on Product Details page
div.ecwid-productBrowser-head {
font-size: 40px;
}
@ae-elaine-axis
ae-elaine-axis / gist:97cfc269f1abcfd98f0fd9d9ae59f8bd
Last active September 14, 2016 11:49
Catalog for all except VIP customers
.ecwid-productBrowser-price {
display: none;
}
body.ecwid-customer-group-XXXXXXX .ecwid-productBrowser-price {
display: block;
}
/* XXXXXXX needs to be replaced by actual customer group ID that can be found with help of Inspector.
You will need to be logged in as a customer of the respective group when inspecting elements.*/
@ae-elaine-axis
ae-elaine-axis / CSS
Created September 14, 2016 18:36
Bigger font for Sign In link
div.ecwid-productBrowser-auth a {
font-size: 20px;
}
@ae-elaine-axis
ae-elaine-axis / Ecwid CSS
Created October 5, 2016 08:06
Change font and colour of category titles on category pages
/*Category pages*/
div.ecwid-productBrowser-CategoryPage div.ecwid-productBrowser-head {
color:#any_color;
}
@ae-elaine-axis
ae-elaine-axis / Ecwid CSS
Created October 5, 2016 08:08
Change font and colour of product titles on product details pages
/*Product pages*/
div.ecwid-productBrowser-ProductPage div.ecwid-productBrowser-head {
color:#any_color;
}
@ae-elaine-axis
ae-elaine-axis / Ecwid CSS
Created October 24, 2016 07:07
Разбить описание товаров на абзацы в категории, Product List
div.ecwid-productBrowser-productsList-descr {
white-space: pre-line;
}
@ae-elaine-axis
ae-elaine-axis / Ecwid CSS
Created October 29, 2016 16:16
Hide the minicart that is part of Single Product code (and leave the minicart added by hand in some [Wix] page)
div.ecwid-minicart-floating {
display:none !important;
}
@ae-elaine-axis
ae-elaine-axis / Ecwid CSS
Created October 31, 2016 12:27
Enlarge Favorite icon
.ecwid-favorite-view {
zoom: 2
}