Skip to content

Instantly share code, notes, and snippets.

@BrennanMiva
Created February 19, 2014 16:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BrennanMiva/9095111 to your computer and use it in GitHub Desktop.
Save BrennanMiva/9095111 to your computer and use it in GitHub Desktop.
style.css - Update
In the "style.css" file, replace the "global mini-basket" section (should start around line 340) with:
/* ------------------------ global mini-basket ------------------------ */
.cart {
margin: 20px 0;
}
#cart a {
color: inherit;
}
.cart .tcart img {
max-height: 50px;
}
.tcart thead th {
white-space: nowrap;
}
.cart td.item-name {
width: 100%;
}
Then replace the "pagination" section (should start around line 750) with:
/* ------------------------ pagination ------------------------ */
.paging {
padding-left: 25px;
}
.paging span,
.paging a {
background: #fff;
border: 1px solid #ddd;
color: #666;
display: block;
float: left;
font-size: 14px;
font-weight: normal;
line-height: 1.428571429;
margin: 0 0 0 5px;
padding: 6px 8px;
text-decoration: none;
width: auto;
}
.paging a:hover,
.paging .current {
background: #4e5555;
color: #fff;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment