Page 1 of 1
Product Highligt / border
Posted: Sun Jan 17, 2010 7:20 pm
by iangregson
Hi
Am using version 1.4 Want to change look of Latest Products etc
Need to change product Background, Border, highlight etc
Love Opencart, but just starting to find my way round it
Thanks
Re: Product Highligt / border
Posted: Sun Jan 17, 2010 7:28 pm
by bebaspromo
try to play with :
.list td {
text-align: center;
vertical-align: top;
padding-bottom: 10px;
}
in your stylesheet.css

Re: Product Highligt / border
Posted: Sun Jan 17, 2010 7:32 pm
by iangregson
Will that change border / back ground in individual product listed ?
Re: Product Highligt / border
Posted: Sun Jan 17, 2010 7:59 pm
by bebaspromo
iangregson wrote:Will that change border / back ground in individual product listed ?
Nop,
the example below :
border :
Code: Select all
border-top: 1px solid #DDDDDD;
border-bottom: 1px solid #DDDDDD;
border-left: 1px solid #DDDDDD;
border-right: 1px solid #DDDDDD;
to make/change default border to rounded border, put :
Code: Select all
-moz-border-radius-topleft: 10px;
-moz-border-radius-topright: 10px;
-moz-border-radius-bottomleft: 10px;
-moz-border-radius-bottomright: 10px;
background hover color:
Code: Select all
}
.list td:hover {
background: #F0F3F4;
}
Re: Product Highligt / border
Posted: Sun Jan 17, 2010 8:22 pm
by iangregson
Great stuff, thanks for your help
Re: Product Highligt / border
Posted: Sun Jan 17, 2010 8:24 pm
by bebaspromo
you're welcome ...
Re: Product Highligt / border
Posted: Mon Jan 18, 2010 8:15 am
by NewMethod
bebaspromo wrote:iangregson wrote:Will that change border / back ground in individual product listed ?
Nop,
the example below :
border :
Code: Select all
border-top: 1px solid #DDDDDD;
border-bottom: 1px solid #DDDDDD;
border-left: 1px solid #DDDDDD;
border-right: 1px solid #DDDDDD;
to make/change default border to rounded border, put :
Code: Select all
-moz-border-radius-topleft: 10px;
-moz-border-radius-topright: 10px;
-moz-border-radius-bottomleft: 10px;
-moz-border-radius-bottomright: 10px;
background hover color:
Code: Select all
}
.list td:hover {
background: #F0F3F4;
}
I like this... how compatible is it though.. don't think it will work with Safari or Internet Explorer 6/7. Not tested though.
Re: Product Highligt / border
Posted: Mon Jan 18, 2010 8:36 am
by iangregson
Have managed to change all items, hover background OK
Have a thumbnail border but only works in front page.
How to make it work on all pages,
Thanks
Re: Product Highligt / border
Posted: Mon Jan 18, 2010 5:43 pm
by bebaspromo
NewMethod wrote:
I like this... how compatible is it though.. don't think it will work with Safari or Internet Explorer 6/7. Not tested though.
yeaaah .... it's call : "Free Template" ...

just tested with FF, Opera/Chrome ...
Re: Product Highligt / border
Posted: Mon Jan 18, 2010 5:49 pm
by bebaspromo
iangregson wrote:Have managed to change all items, hover background OK
Have a thumbnail border but only works in front page.
How to make it work on all pages,
Thanks
in my stylesheet.css (template above) :
Code: Select all
.list {
margin-bottom: 10px;
width: 100%;
}
.list td {
text-align: center;
background: #FFFFFF;
vertical-align: top;
padding-bottom: 10px;
padding-top:0px;
border-top: 1px solid #DDDDDD;
border-bottom: 1px solid #DDDDDD;
border-left: 1px solid #DDDDDD;
border-right: 1px solid #DDDDDD;
-moz-border-radius-bottomleft: 10px;
-moz-border-radius-bottomright: 10px;
-moz-border-radius-topleft: 10px;
-moz-border-radius-topright: 10px;
}
.list td:hover {
background: #F3F3F3;
}
it's work to all .list class such as "product/category" thumb...
Re: Product Highligt / border
Posted: Wed Feb 02, 2011 9:20 pm
by PalMultimedia
This is what I am looking fore... great but I have a problem with the rounded corner.
it shows squat corner insted of rounded one.
any suggestion ??
Re: Product Highligt / border
Posted: Fri Apr 08, 2011 6:42 pm
by KuriN
Thats great stuff, Thanks a lot!!!!
Re: Product Highligt / border
Posted: Wed Jul 13, 2011 4:38 am
by dee-efx
Hi,
Do you think this would work on Version 1.4.9.
I am wanting a border round all of my photos across the whole site and this looks really good.
Thanks in advance. Darren
Re: Product Highligt / border
Posted: Wed Jul 13, 2011 7:17 am
by nosecret
dee-efx wrote:
Do you think this would work on Version 1.4.9.
Yes, that is work on OC version 1.4.9.