Probably JetPack plugin gives me ability to add custom css to theme…problem is it’s not working as it should, I must’ve added something wrong .Suppose it’s not enough just to add this :
.widget ul li {
padding-left: 18px;
background: url(“images/list-cross.png”) no-repeat 0 6px;
list-style:none;
}
I tried also to add everything and lose even arrow though I didn’t change it and this code should override default css :
#sidebar {
float: right;
width: 300px;
}
/* Widgets */
.widget{
margin: 0 0 18px 0;
clear: both;
overflow: hidden;
}
.widget h3.widget-title {
text-transform: uppercase;
font-size: 18px;
background: url(“images/border-solid.png”) repeat-x 0 100%;
margin: 0 0 12px 0;
padding: 0 0 6px 0;
}
.widget a{
color: #FFFFFF !important;
text-decoration: none;
}
.widget ul {padding: 0;}
.widget ul li {
padding-left: 18px;
background: url(“images/list-arrow.png”) no-repeat 0 6px;
list-style:none;
}
I have another option, to copy whole theme css and change it…then use “Don’t use GamePress’s CSS, and replace everything with my own CSS.” ?
Thanks !