it was likely similar to this but this code does nothing
.page-title {font-size: 36px;}
it was likely similar to this but this code does nothing
.page-title {font-size: 36px;}
Well, likely similar wouldn’t/shouldn’t work. At this point, its not very clear to me what is the issue.
The issue is simply this, I want to change the title font (FAQ) on my FAQ page. and I have done it once before, somehow undone it, and completely forgotten how I did it.
Its currently huge and I want it to be 32px just like the title font in my contact page
Based on your initial request “[…] Account page title I want to change to be like the FAQ page” you wanted to have other pages similar to the FAQ page, not the other way around.
Anyway, for a better management, I’d suggest to open different threads for different issues.
Now, if you want to adjust that specific text from your FAQ page, you can make use of the below CSS code:
.page-width.page-width--narrow.section-template--14372242751552__main-padding h1 {
font-size: 32px !important;
}
Regards,
Sorry this all happened as I was fixing the initial issue I made this thread about. That line of code appears to change nothing. Was it to go into base.css?
Yes, adding the code at the end of your base.css file should have addressed this issue - assuming that you are not having CSS media query errors to this point, and assuming that you haven’t changed the page - because doing so, it won’t target the specified element.
To quickly test if there are media query errors, in this case, you can place the code at the beginning of your base.css file, and not at the end.
Alternatively, you can consider hiring a web developer to further debug your website issues.
Regards,
Hi @OmegaCoffee you can add me as a collaborator so I can access the code and solve your issue.
here is a collaborator code, you can send me a request
5738
Hi @OmegaCoffee i have just sent the request with name “Easy Knowledge”
Adding the code to the first line of base actually solved it. What query error might that indicate?
I accepted it, the issue is resolved but it’s only because I posted the code at the beginning of base and not the end.
I just move the code to the bottom check now
nope that set it back to it’s large size, truthfully I’m good to have the code at the top, I was just cornered about a query code error as mentioned by GabrielS
Hi I have found the error. an ending curly brace was missing in the base file line number 2887, that’s why any code after it was not working. Now you can paste any code at the bottom.
You my friend are a gem. Thanks so much to both you and GabrielS for helping me figure all this out!