Categories
Uncategorized

WRRR CSS problem

After upgrading to iFeature Pro 5.1.0.7, the white background css broke. The wrapper div that I was setting up is no longer on the pages, so I can’t set it. I was able to set these attributes on .container :

  background-color: rgb(255, 255, 255);
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: 2px 2px 3px 2px #333333;

The box shadow had some problems, in that it meant a shadow around every container, rather than around the whole thing. I was able to mitigate this by not having bottoms and tops on the shadows, but this requires using multiple shadows, which may not work on all browsers: box-shadow: 6px 0 4px  -4px #333333, -6px 0 4px  -4px #333333;

This helped fix almost everything. Here is a partial image of the page:

 wrrrcss

The color of the menu is all wrong. It should look like the dark green “Upcoming Events” header. That is what I need help with.