Centring tabs
-
Hello,
In the past I have used a CSS code to centre the text in my side widget, but it doesn’t seem to work on the ‘follow’ tab in my side widget. Is there a different code for centring tabs?
Thanks very much,
Kate.The blog I need help with is: (visible only to logged in users)
-
Hi
If you would like to center the button with the text “Follow Homegrown Kate”, you would need to add a little piece of CSS code.
.widget_blog_subscription .wf-active input[type=”submit”] {
margin: 0 auto;
display: block;
}I hope this helps you.
-
-
Sorry about that, homegrownkate!
I added a ‘bug’ :). Just remove “.widget_blog_subscription” at the beginning and tell me if that is ok for you:
.wf-active input[type="submit"] { margin: 0 auto; display: block; } -
And to offer another variation, this version will only target the subscription form, and will work even if you don’t have custom fonts active:
.widget_blog_subscription input[type="submit"] { margin: 0 auto; display: block; } -
- The topic ‘Centring tabs’ is closed to new replies.