Hi
So maybe this validation error comes from K2 item layout file or one of the plugin used by it.
As You can see a code structure at Your site looks like that:
- Code: Select all
<div id="gkContent" class="gkMain gkCol gkContentR" style="width:64%">
<div id="gkRight" class="gkMain gkCol" style="width:36%">
</div>
</div>
while it should be :
- Code: Select all
<div id="gkContent" class="gkMain gkCol gkContentR" style="width:64%">
</div>
<div id="gkRight" class="gkMain gkCol" style="width:36%">
</div>
What modifications have You made to template's code ?
Meanwhile You can use this code to make it looks like it's fixed (but it will not be):
- Code: Select all
#gkMainBlock { position: relative; }
#gkRight {
position: absolute;
right: 0;
top: 0;
}