recently I have added a FB like button and a Twitter follow button on my wordpress site and, in order to vertical align them I’ve inserted this code in the “user.css” template:
.fb-like {
position: relative;
top: 50%;
transform: translateY(-50%);
}
.twitter-follow-button{
position: relative;
top: 50%;
transform: translateY(-50%);
}
Now I’m trying to insert a Youtube subscribe button (class=g-ytsubscribe) and, in order to align it, I’ve inserted the sequent code
.g-ytsubscribe{
position: relative;
top: 50%;
transform: translateY(-50%);
}
While for the first two buttons it’s working, for the youtube button it’s not working and the result is that:
How could I fix it???
Thank you all!!!
If you inspect the element, you can see that the class
g-ytsubscribe
is removed and the ID___ytsubscribe_0
is added.Added
display: block
for it to work in Chromium-based web browsers.Live demo (JSFiddle)