Portfolio project type page
- The topic ‘Portfolio project type page’ is closed to new replies.
Need help? Check out our Support site, then
Hi,
Is there any way that I can change the appearance of portfolio project type pages? Here is one of mine:
https://beverlycooks.com/project-type/sweet/
The title of the page “sweet” is in a white box, the word is small and is not centred. From a graphics perspective it looks awkward.
Thanks
Bev
The blog I need help with is: (visible only to logged in users)
I think the other issue is that on a laptop the white box is an awkward size, could it be the same width as the full length of the 3 portfolio posts? It is slightly smaller at the moment. It looks better on a mobile phone where it lines up with the edges of the portfolio post.
Thanks
Bev
Hi,
Please try the following css snippet.
It will target the width, alignment and font size of page title.
@media (min-width: 768px) {
.page-header {
width: 100%;
}
.page-title {
text-align: center;
font-size: 35px;
}
}
Thanks
Works great, thanks!
Thanks for your feedback.