Hi
I never use Jomla backend for manage css i useonl y real css desktop editor like webmatrix , dreamweaver , topstyle , bluegriffon.
Many are pay software and you have to pay for have support and quality feedback ( time is money ) .
Some browser let you live edit css file from browser .......
A-- for border
change #0083CC to what ever you want
in
www.mymineralkids.com/templates/newlifes...eorange/template.css
go to line 6201 (next selector is for hover line 6211 )
.hikashop_products .hikashop_product_image img {
background: none repeat scroll 0 0 #FFFFFF !important;
border: 8px solid #0083CC;
margin: 0;
max-width: 100%;
transition: border 200ms ease-out 0s;
width: 100%;
}
.hikashop_products .hikashop_product_image img:hover {
border: 8px solid #84C143;
}
B-- for horizontal line
change #3366FF to whatever you want
in file
www.mymineralkids.com/templates/newlifes...eorange/template.css
in line 6788
h2.article-title a, h2.article-title span, h1 a, h1 span, .componentheading a, .componentheading span, .hikashop_checkout_page h2 a, .hikashop_checkout_page h2 span, .hikashop_container h2 a, .hikashop_container h2 span {
border-bottom: 8px solid #3366FF;
padding-bottom: 21px;
}
if you want only change the <a> horizontal bottom line color and not all the html tag link to compound selector attach to thoses properties ( inside "{ }" ) you can do this
after the selector above add this code
.hikashop_container h2 span a
{ border-bottom: 8px solid #66FF33;}
it seem when study the website that some change occur inthe css file !!
hope it ll usefull
regard's