I'd like to center align the images and the text on my portfolio pages. here's an example.
http://indiewrecked.com/design-identity/
Thanks!
I'd like to center align the images and the text on my portfolio pages. here's an example.
http://indiewrecked.com/design-identity/
Thanks!
Hi!
Try to add following code to style.css:
#main .portfolio_entry .box img {
display: block;
margin: auto;
text-align: center;
}
#main .portfolio_entry .box h3 a, #main .portfolio_entry .box h3,
#main .portfolio_entry .box p, #main .portfolio_entry .box{
text-align: center;
}
Best regards,
Peter
Close, but not quite there. The Preview image and the "Read More" text stayed left aligned.
Hi jjgarcia03,
Try to add this code:
.more-link {
left: 50% !important;
margin-left: -36px !important;
}
#main .portfolio_entry .box img {
left: 50% !important;
margin-left: -50px !important;
}
Hope this helps. :)
Regards,
Ismael
Perfect, thanks!
Hello,
Glad we could help.
Regards,
Ismael
This topic has been closed to new replies.