user701254
user701254

Reputation: 3953

Hiding a css class permanently

I'm hiding the css class .pds-pd-link. This class styles the link www.polldaddy.com . The link is hidden. When the user votes and clicks "Return To Poll" the link www.polldaddy.com is viewable again. I don't think there is any way to hide this permanently without modyifying source code of poll ?

http://jsfiddle.net/Wx5mM/2/

        <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
    <script type="text/javascript">
      $(document).ready(function() {
        $(".pds-pd-link").hide();
        $(".a2a_dd.pds-share").hide();
      });
    </script>
    <script type="text/javascript" charset="utf-8" src="http://static.polldaddy.com/p/6343621.js"></script>
<noscript><a href="http://polldaddy.com/poll/6343621/">New Poll</a></noscript>

Upvotes: 0

Views: 376

Answers (1)

Hubro
Hubro

Reputation: 59398

.pds-pd-link {
    display: none !important;
}

​ Seems to do the job

http://jsfiddle.net/Wx5mM/7/

Upvotes: 7

Related Questions