Hier mal die komplette sociable.css Datei des Plugins:
CSS
div.sociable { margin: 16px 0; }
span.sociable_tagline { position: relative; }
span.sociable_tagline span { display: none; width: 14em; }
span.sociable_tagline:hover span {
position: absolute;
display: block;
top: -5em;
background: #ffe;
border: 1px solid #ccc;
color: black;
line-height: 1.25em;
}
.sociable span {
display: block;
}
.sociable ul {
display: inline;
margin: 0 !important;
padding: 0 !important;
}
.sociable ul li {
background: none;
display: inline !important;
list-style-type: none;
margin: 0;
padding: 1px;
}
.sociable ul li:before { content: ""; }
.sociable img {
float: none;
width: 16px;
height: 16px;
border: 0;
margin: 0;
padding: 0;
}
.sociable-hovers {
opacity: .4;
-moz-opacity: .4;
filter: alpha(opacity=40);
}
.sociable-hovers:hover {
opacity: 1;
-moz-opacity: 1;
filter: alpha(opacity=100);
}
Alles anzeigen
Nachfolgend die betroffene Zeile aus der style.css des Themes:
Code
.post .p-con ul li { padding: 2px 0px 2px 15px; list-style-type: none; background: url(images/p-con-li.png) no-repeat left top; font-size: 12px; line-height: 15px; color:#63565f; }
Dazu befindet sich noch in den Options von Sociable die Information:
Zitatfor complete customization, copy the contents of sociable.css in the Sociable plugin directory to your theme's style.css
Das habe ich auch gemacht, doch die Zeile aus der style.css macht das dazu kopierte aus der sociable.css nichtig, wie kann ich dennoch beides miteinander vereinbaren?