Text size in div

0

I have a text inside a div and it will not go to the end of it and I would like this to happen, the text is what is positioned to the right of the page next to the larger image. I created a generic div to do some testing.

The div with its original configuration:

.one-fourth {
    width: 20.5%;   
    max-width: 220px;
}

I did the calculations, but I could not.

The div with my change

.one-fourth-pers {
    width: 40.5%;   
    max-width: 220px;
}
.column-last { 
    margin-right: 0 !important;
}

The site in question is this: Product details page

    
asked by anonymous 27.01.2015 / 18:17

1 answer

1

Try to make the following change in the .one-fourth class by removing max-width.

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