solved Anybody know how to change the border bottom lines?

Zachary Moonshine
Zachary Moonshine
@zachary-moonshine
10 years ago
831 posts
I cant seem to find it used firefox tool to change it and it shows it as border bottom color but in the skin tools on jamroom where is that located
Capture.PNG.png
Capture.PNG.png  •  34KB


updated by @zachary-moonshine: 02/06/16 10:57:03PM
michael
@michael
10 years ago
7,799 posts
If you can change it in firefox, check what the css class was where you changed it.

On your site the skin in use is the jrNingja skin.

PROBLEM:
It has a short-hand CSS property.
    border-bottom: 1px solid #CCCCCC;
and the STYLE tab doesnt know how to format that to allow for changes. It needs to be expanded to the long hand version in the /css/list.css file. The expanded version is:
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #CCCCCC;

I'll get that changed and released so you can update it from:
ACP -> SKINS -> NINGJA -> STYLE -> (search) .item

Give me 5 min, then update ningja from the marketplace.
Zachary Moonshine
Zachary Moonshine
@zachary-moonshine
10 years ago
831 posts
awesome man thank you that worked