Motif: further on Follow button

  • Unknown's avatar
    button, html input[type="button"], input[type="reset"], input[type="submit"] {
        background: #847659;
    }

    of course works perfectly. But I’m totally unable to work out how to go the next step and make the a: hover (and the rest) the same.
    (At the moment when one hovers the b.g. goes dark brown; and I’ve tried everything even remotely familiar to me …)

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    To make myself more clear (a consummation devoutly to be wished), I’d like to point out the ‘Older Posts’ button on the bottom: it is white with fawn lettering and turns fawn with white lettering when hovered over.
    I want the Follow button to do the exact opposite, please …

  • Unknown's avatar

    I think this is what you are looking for. Find these two rules in your custom CSS and replace them with what I have below.

    #infinite-handle span {
        color: #FFFFFF;
        background-color: #847659;
    }
    #infinite-handle span:hover {
        background-color: #FFFFFF;
        color: #847659;
    }
  • Unknown's avatar
    #infinite-handle span {
    	color: #FFFFFF;
    	background-color: #847659;
    }
    
    #infinite-handle span:hover {
    	background-color: #FFFFFF;
    	color: #847659;
    }

    Copied and pasted what’s there now, and was I meant to remove the previous code? – I did …
    But it’s still showing the dark brown.
    WOT have I done?! :-|

  • Unknown's avatar

    … showing dark brown on hover.

  • Unknown's avatar

    So you don’t want any differentiation between hover and non-hover?

  • Unknown's avatar

    I’m seeing white background on hover with the brown text.

  • Unknown's avatar

    I do, me old china. I want it as stated (confusingly) earlier:
    the ‘Older Posts’ button on the bottom: it is white with fawn lettering and turns fawn with white lettering when hovered over.
    I want the Follow button to do the exact opposite, please …

    It’s the wrong brown, you see: it should be fawn. The darkish brown is from the earlier set of colors that matched the earlier banner …
    (The fawn is the #847659, which I do NOT see …)

  • Unknown's avatar

    I definitely need sleep. I was working on the older posts button. :(

    Follow button white with fawn lettering that turns fawn with white lettering when hovered.

    button:hover, html input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover {
        color: #FFFFFF;
        background-color: #847659;
    }
    button, html input[type="button"], input[type="reset"], input[type="submit"] {
        color: #847659;
        background-color: #FFFFFF;
    }

    And this will reverse my previous mistake on the older posts button and make it the opposite of the follow button (replace previous code).

    #infinite-handle span:hover {
    	color:#FFF;
    	background-color:#847659
    }
    
    #infinite-handle span {
    	background-color:#FFF;
    	color:#847659
    }
  • Unknown's avatar

    No, mate – what you need is a loooooooooong break from M.R.!!!
    With any luck, you can have it – I’m feelin kind. [grin]
    But it is well past your bedtime, Mr. S> – so hop off and go sleepybyes. Dream of the day when the old codger has asked every single CSS question in the book.
    And … thank from the heart, Rich. As ALWAYS.

  • Unknown's avatar

    You are always welcome and you know where we are. :)

  • The topic ‘Motif: further on Follow button’ is closed to new replies.