removed the Project Type using CSS, need to center the remaining tex
-
this is a link to an item found in our portfolio page
You will notice the on the boards title is centered a bit.
If you go to historic preservation, you will see it shifts right. Link found here
Can you please help with centering?
The blog I need help with is: (visible only to logged in users)
-
Hi there, on the historic preservation page, what is making the misalignment is the tagstring, which you have set to visibility: hidden. With visibility: hidden, the element is still there, but just not visible. What we would want to do in this case is use display: none which instructs the browser to ignore that element. I would also suggest a slight change to the CSS selector as well. Replace it with this.
#portfoliowrapper span.tagstring { display: none; }and then add this to center the titles.
#portfoliowrapper h1.entry-title { text-align: !important; float: none; }
- The topic ‘removed the Project Type using CSS, need to center the remaining tex’ is closed to new replies.