sam99077
Forum Replies Created
-
Forum: Plugins
In reply to: [Wordbooker] [Plugin: Wordbooker] Adding a redundant set of Facebook metatagsHi Steve,
We have had the same issue with double title tags in google+. As you said we turned off the option in the Adv. Settings and the second title tag was gone. But the excerpt of our wordpress post also disappeared. Instead google+ used the website description???
So both solutions failed, is there anything else we could try?
Regards
Alexander@mrmagos: thanks a lot for your comment! we changed that today
sure, here we go. first i copied the css to my own style.css. i´ve marked the important lines with ==> (please remove):
#sidebar3 ul {
margin-top: 0;
padding: 0;
==> counter-reset: level1;
}#sidebar3 ul li {
border-bottom: 1px dotted #D4D4D4;
font-size: 100%;
font-weight: 100;
height: 90px;
padding-bottom: 10px;
padding-top: 15px;
}#sidebar3 ul li:before {
background: none repeat scroll 0 0 #5C87B3;
color: #FFFFFF;
==> content: counter(level1, decimal) ” “;
==> counter-increment: level1;
font-family: arial;
font-size: 18px;
font-weight: bold;
margin-left: -140px;
margin-top: 60px;
padding: 3px 9px;
position: absolute;
}you have to put the ‘counter-reset: level1;’ into the parent-div (otherwise you will get only ‘1’ and no counting).
use li:before or li:after as you wish, you can also use multiple ‘levels’. i´ve not tried but you can find a lot of information about that on the web, just google.
you can see how it works on our new website GRAMSTA
Forum: Plugins
In reply to: [Wordbooker] Wordbooker-link and logo on Facebook (pro version?)sure!
well, it took several hours to find 😉
actually I´m using the following css:content: counter(level1, decimal) ” “;
counter-increment: level1;Forum: Plugins
In reply to: [Wordbooker] Wordbooker-link and logo on Facebook (pro version?)that´s great! thank you, we are waiting patiently
Hi Héctor, thank you for your answer. In the meantime I tried “content:counter…” and what a surprise – it works!