Hidden div

Hello,

I got hidden div tags at the bottom of the site but they are not hidden. Any ideas? Please help.

Site: http://www.orangestonephotography.com/test/pre2/point-of-sale.php

Source: http://silver163.pastebin.com/m3405d16

  1. Site url doesn’t work (so I couldn’t find your CSS file)
  2. <div class=‘hidden’> should be <div class=“hidden”>, double quotes instead of single quotes
  3. In your css should be either

.hidden { display: none; }

or


.hidden { visibility: hidden; }

Both of these CSS statements hide div’s with class “hidden” (both in different ways though)

yeah i got it working, the .hidden was commented out for some reason.