tags:

views:

54

answers:

2

I have given a class in pane.css:

.activitypodPadding{padding:11px 16px;}

This class is called in the code here:<div class="roundboxcontent activitypodpadding">. But the browser is not taking the above padding. Can anybody help me.

+1  A: 

typo in <div class="roundboxcontent activitypodPadding">. Should be capitalised.

SilentGhost
+3  A: 

The CSS has a capital P, the html does not. Make the class names match in case, and it will work.

Ned Batchelder
Thanks for the quick reply
Shivanand