Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have the code below in a site but can't get to center everything within the main div (rightBarItems):

<div class="rightBarItems">
<?php
echo "<div class='similarTitle'>YOU MAY ALSO LIKE</div>";
while ($row3 = $result3->fetch())
{
echo "<div class='similarItems'>";
echo "<a href='items_descr.php?itemId=".$row3[id_item]."'><img class='similarImage' src='images/{$row3[thumb1]}.jpg'></img>";
echo "<div class='similarItemsText'>".$row3[name]."</div></div>";
}
?>

Then, here is my css:

    .similarTitle {
    font-family:"Century Gothic","Trebuchet MS",Helvetica,Arial,sans-serif;
    font-size:15px;
    text-transform:uppercase;
    color:#3E3E3E;  
    }
.rightBarItems
{
margin: 0 auto;
width: 168px;
background: #F3EFE2;
padding: 10px;
float: right;
text-align: center; 
height: 300px;
}
    .similarItems { 
    float: left;
    text-align:center;
    margin: 0 auto;
    padding: 5px;
     }
    .similarItemsText { 
    padding-right: 11px;
    margin: 0 auto;
    font-family: verdana,Helvetica,Arial,sans-serif;
    font-size: 11px;
    color: #666;
     }
     #similarImage {
     margin: 0 auto;

     border: 1px solid gray;
     float: left;
     }

Not everything gets centered... Any help? Thanks!! * Adding some extra CSS I had forgot to put

share|improve this question
If you want people to continue helping you, start accepting answers. Mithun Sen has the correct answer by the way. – MiniRagnarok Jan 3 at 21:51

4 Answers

up vote 1 down vote accepted

Try This in CSS

.rightBarItems{  text-align:center ; }

or

.rightBarItems > div { margin-left:auto ; margin-right:auto; }
share|improve this answer

use

text-align:center;

for all css class: rightBarItems, similarTitle, similarItemsText, similarImage

share|improve this answer

Remove the float:right style from the rightBarItems div.

share|improve this answer

Well, firstly, you have different padding values for each class so that will first prevent them from aligning.

If you are ok with leaving a paragraph space between the texts then align=center should work with the paragraph tag instead of fixing the whole CSS code.

<p align="center"> Centered Text </p>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.