treehouse : what would you like to learn today?
Web Design Web Development iOS Development

hacking wufoo (with their permission)

  • I'm a smalll scale wufoo user. and a very basic css coder...
    their "powered by wufoo button" is awfully big and agressive, i asked them, if theres a way to change/delete it and they said that no, but were nice enough to say that it wouldnt hurt their feeling if i hacked the situation. 8-)

    and so i'm trying. but seems like the button display attribute is coming from a later dinamcillay created css, which i cant access, and even when i put an !important decleration on display:none to that class, it still shows.

    does anyone know how i can access that powered by wufoo class and make changes that will stick ? :-/
    I am of course using the custom css file...
    here: http://daphnaland.wufoo.com/forms/sign- ... ewsletter/
    thanks in advance
  • I've never done anything with Wufoo before but here's what I found works:

    a.power {
    height: 0;
    width: 0;
    overflow: hidden;
    border: none !important;
    }
  • Thanks!

    there still is some grey left, but its definetley in the right direction. thx. :D