Ask your WordPress questions! Pay money and get answers fast! Comodo Trusted Site Seal
Official PayPal Seal

Templates/pages alignment issues WordPress

  • SOLVED

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.

Answers (2)

2012-10-20

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.

2012-10-20

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.