My "pages" aren't aligned right along with my buddy press pages. Is there someone that can go to my site a fix them? My category and other pages are fine. It seems like all BuddyPress, TAG and any "pages" I create come out with alignment issues.
Here are a few pages.
Please don't mention my sites name!
http://tinyurl.com/8wqgh8a
http://tinyurl.com/8exkqd4
I can compensate more if needed.
Arnav Joy answers:
can you send me ftp and admin to my mail : [email protected]
nimo comments:
Sent. Let me know if you need anything else.
Arnav Joy comments:
Hi ,
Nimo I have corrected the problem , please check.
Christianto answers:
The HTML structure on the page is different that the other
on the error page
<div id="main">
<div class="post-heading page">
<!-- your content here -->
</div>
<div class="post-entry">
<!-- your content here -->
</div>
<div id="sidebar">
<!-- your sidebar here -->
</div>
</div>
on the other page for example category:
<div id="main">
<div class="main-area">
<div class="left-content">
<!-- your content here -->
</div>
<div class="right-content">
<!-- your content here -->
</div>
</div>
</div>
you need to change the page html structure like:
<div class="main-area">
<div class="left-content">
<div class="post-heading page">
<!-- your content here -->
</div>
<div class="post-entry">
<!-- your content here -->
</div>
<!-- your content here -->
</div>
<div class="right-content">
<div id="sidebar">
<!-- your sidebar here -->
</div>
</div>
</div>
class "left-content" for all content on the left, class "right-content" for sidebar on the right.
You can paste page.php, index.php, archive.php, tag.php here so we can edit it for you.