Hello,
I’m using the template Pagebuilder + Page title for the homepage of my website : “Racelab : Analyses de l’actualité F1”
The result is like this : https://racelab.io/
I would like to customize the Page title. I would like to center the Page title, change the font… But I don’t know how can I achieve this. Can you help me ?
Thanks by advance!
-
This topic was modified 7 years by
Piastol.
Hi,
Is look like your website is showing the mobile version on desktop -> https://www.screencast.com/t/u7WjA69Tm usually this is a cache plugin conflict, please deactivate all non theme and cache plugin, clear all cache and try again.
This is our list with tested plugins with our theme -> https://www.screencast.com/t/cmPkh9jba4sZ
Thank you!
Hello,
Yes I used the Wp Rocket plugin that I used before on another website. I desactivated it and now it’s back to normal, everything seems to be fine.
So I ask you again :
I’m using the template Pagebuilder + Page title for the homepage of my website : “Racelab : Analyses de l’actualité F1”
The result is like this : https://racelab.io/
I would like to customize the Page title. I would like to center the Page title, change the font… But I don’t know how can I achieve this. Can you help me ?
Thanks by advance!
Hi,
In order to change the font for page title you need to go in Theme panel> Theme fonts> Pages -> https://www.screencast.com/t/x00p9BTI and in for center you need to use a custom css -> https://www.screencast.com/t/MXGOzrb12
.td-page-header h1{
text-align: center;
}
Set the code in Theme panel>Custom code>Custom css.
Thank you!
Hello,
Thanks for your answer. Everything works well now!
I have another question though! Is it possible to center the news ticker? I would like to put it just under the ” Racelab : Analyses de l’actualité F1 “. I would like to keep the arrows the way they are. Also, I really like the design of the Header that I use on the homepage for “Récent”, “Articles populaires” and also “Tout”. Is it possible to style the news ticker this way ? Like this it can match all together.
Thanks in advance!
Hi,
You can try this custom css for this
https://www.screencast.com/t/kAfqlF61PdlW
.td-trending-now-title {
color: #fff!important;
}
.td-black .td-trending-now-title {
background-color: #dd3333!important;
}
.td_module_trending_now{
width: 100%!important;
}
.td-trending-now-display-area .entry-title {
position: relative;
left: 50%;
transform: translateX(-25%);
}
Set the code in Theme panel> Custom code>Custom css
Thank you!