1. Updating Newspaper Theme to the new version has caused the change of footer widget title color.
https://www.screencast.com/t/2WZRS30Annvp
Actually all the three Footer Widget title color was the same. How can I have same the same color?
2. At the end of the posts, I use Facebook Comment Plugin for the readers to add their comments. As I wanted to give some description about comments, I gave description using the Title option.
https://www.screencast.com/t/uzedG7fBv6
I want to reduce the Font Size and color of it. Or any option to give this text at the end of each post?
It will be a great help, if you could suggest solution to solve these problems.
Hi,
1. Try changing the colors to your footer block widgets again maybe the settings were reset – https://www.screencast.com/t/1B8glqQtZ or if you used any custom code to change them and the changes do not work anymore use the !important tag to force the code to apply. Also check the Theme panel->Theme fonts to see what setings are set for the widgets header color – https://www.screencast.com/t/ld2nMFokx
2. From what I can see that plugins title you have set inherits the post content heading title font and color – https://www.screencast.com/t/gLj9pr7ny set here – https://www.screencast.com/t/z4iV8VGlzQ – https://www.screencast.com/t/6hwMXL63v
Thanks
Thanks a lot for your reply.
1. Unfortunately the first problem is not solved.
There is no option to change color for this widget block https://www.screencast.com/t/WTYogq16b
No custom code is used to change it.
At Theme Panel as widget header color is set to another color https://www.screencast.com/t/QrqCMFkXUj7
For other two footer widget header, the given color is displayed.
https://www.screencast.com/t/2WZRS30Annvp
2. With your help, the problem is solved. One more question related to that. Is it possible to insert external link to this text?
Thanking you for all your support
-
This reply was modified 9 years by
srampia.
Hi,
You could try these custom css codes for the footer block titles, this one is for the facebook widget title color and also you could set a background color to it too (with colors of your choosing) just enter them in Themepanel->Custom Css, or if you don’t want any background just remove the background property from the code
.td-footer-wrapper .widget_facebook_likebox .block-title a {
color: #8e0039!important;
background-color: yellow;
}
Result –
And this code is for the other two block widgets if you would like to set a background color to them
.td-footer-wrapper .td_block_7 .block-title span {
background-color: yellow;
}
Result – https://www.screencast.com/t/SVvzPJQubhJ
You could try entering a standard html link – http://www.w3schools.com/html/html_links.asp inside the title text, but I do not know if it will work or not, give it a shot.
Thanks