I want to do some customization see this: https://prnt.sc/h1x00t
1. How to add search box here. (Please check the image)
2. How to rename ABOUT US text & how to make it Center.
3. How to rename FOLLOW US text & how to make it Center.
Hi,
1. There is a search widget that you can use, if you want a search in a footer section
– https://www.screencast.com/t/pq7JpmfwAv
– https://www.screencast.com/t/4uo9u73oOnQD
2/3 That text can be changed in the theme translations
– https://www.screencast.com/t/nYqZkNc7apS
For the center alignment try this code
.td-footer-wrapper .footer-text-wrap .block-title,
.td-footer-wrapper .footer-social-wrap .block-title{
text-align: center;
}
Thanks
Hi,
The translation works as you can see here
– https://www.screencast.com/t/qX4pl4BjnT
– https://www.screencast.com/t/gTiuAEV1i0y4
The center alignment also works as it can be seen here, footer template 14 as well
– https://www.screencast.com/t/AO2QPgfh
If you have caching, clear your cache after making the modification in the translation settings, and entering the CSS code.
Thanks
Translation working but Center alignment Not working. Check this: https://prnt.sc/h2lbtf
I already clear cache.
Hi,
This code will surely center align the titles
– https://www.screencast.com/t/MtoCoLB6
There was a stronger code left aligning this element, from the demo you have installed
.td-blog-fitness .td-footer-wrapper .block-title,
.td-blog-fitness .td-footer-wrapper .block-title{
text-align: center!important;
}
If you want the About me text to be aligned as well add this code
– https://www.screencast.com/t/4p1Ypt64gM4J
.td-blog-fitness .td-footer-wrapper .footer-text-wrap {
text-align:center;
}
Thanks