calandry
Forum Replies Created
-
Forum: Plugins
In reply to: [Theme My Login] Settings/Set-upThanks Jeff. Got it. It was another plugin redirecting http://mysite.com/login to http://mysite.com/wp-login.php. Tried to post that it was fixed already and this was resolved so you wouldn’t have to respond. Guess I didn’t submit it correctly. Great plugin. Thank you.
Forum: Plugins
In reply to: Jetpack Subscription StylingHi MarximusMG,
I actually found the answer in another thread, but I don’t remember where it is to direct you to it. Here is what I did to style the submit button:
#subscribe-blog-blog_subscription-2 input[type=”submit”] {
float: right;
height: 35px;
width: 29%;
background-color: #EA141F;
color: #FFF;
border: none;
}To get the hover color I am using this:
#subscribe-blog-blog_subscription-2 input[type=”submit”]:hover {
background-color: #364956;
}And finally the text input box:
#subscribe-blog-blog_subscription-2 input[type=”text”] {
float: left;
height: 32px;
border: none;
width: 65%;
padding-left: 10px;
}Hope this helps.
Thank you for your reply Angelo
Forum: Hacks
In reply to: Jetpack Subscription Stylinggot the hover answer from here.
http://ww.wp.xz.cn/support/topic/subscription-button-2?replies=5combined with what you showed me. Final product =
#subscribe-blog-blog_subscription-2 input[type=”submit”]:hover {
background-color: #364956;
}Thank you.
Forum: Hacks
In reply to: Jetpack Subscription StylingThank you for the reply bcworkz. It didn’t do the trick for me in my childtheme stylesheet, but it is working when I add it to custom css editor. Guess I should have tried that all along. I think I saw a selector for hover in one of the other threads before I posted this question. I’ll look around and see if I can find it again. Thanks again.