1
I have a detail page where the product title when resizing the browser or viewed on a mobile device the text is completely aligned to the left, I would like the alignment to remain but the text to be better distributed, the structure where the title is:
<div class="one-fourth-pers column-last"><h3 class="entry-title"><?php echo $row_rsProdutos['descricao']; ?></h3></div>
.one-fourth-pers {
width: 40.5%;
float:left;
/*max-width: 220px;*/
}
When trying to change the width the entire content is played down. The page can be seen here: Page of Details
Thanks for the excellent tip @yamadapc, solved my problem.
– adventistapr