I am using this code below to center the titles of portfolios items but does not work. For bread it is aligned left. Whats wrong?
CODE
.av-masonry-entry .av-masonry-entry-title {
font-size: 15px;
line-height: 1.3em;
margin: 0;
color: # 666666
text-align: center;
font-family: ‘Roboto’, ‘Open Sans’, ‘HelveticaNeue’, ‘Helvetica Neue’, Helvetica, Arial, sans-serif;
}
LINK
The gallery is just down the page.
Hey mleite1,
Thanks for reaching out to us!
From looking at your code above I noticed that at the line color: #666666 you are missing a semicolon (;) and it should look like this color: #666666;. The browser is reading this as one line color: # 666666 text-align: center;, so be sure to separate them with the semicolon.
Best regards,
Jordan
Okay. It works. My lack of attention. Excuse me.
Thank you