How do not leave buttons to like and share below the product image?

1

I am not able to leave below the details text of my product enjoy and share buttons, they are being shifted down the photo of the product on the left. I tried to change the div size of the product image, but it did not work, see the div and its formatting:

<div class="three-fourths">
...
</div>

.three-fourths {
    width: 60.5%;   
    max-width: 700px;   
}

The text div of the details and their formatting:

<div class="one-fourth-pers column-last">
...
</div>

.one-fourth-pers {
    width: 40.5%;
    float:left; 
    /*max-width: 220px;*/
}

.column-last { 
    margin-right: 0 !important;
}

An example:

Details

    
asked by anonymous 16.02.2015 / 01:45

1 answer

1

I see that you have three divs

<div class="three-fourths"><!--Imagem--></div>
<div class="one-fourth-pers column-last"><!--Descrição--></div>
<div class="fb-like fb_iframe_widget"><!--FaceBook--></div>

All you need to do is move the "Facebook" div into the "Details" div, more precisely at the end of it.

<div class="three-fourths"><!--Imagem--></div>
<div class="one-fourth-pers column-last">
    <!--Descrição-->
    <div class="fb-like fb_iframe_widget"><!--FaceBook--></div>
</div>   
    
16.02.2015 / 01:55