Hi guys, quick Q:
How do i change the colour of the tags below an article?
I cant seem to find the correct code.
Did change the TAGS block, but now the tags themselves: i want them to have a different font color. So instead of black: #636363.
See image for the things i mean:
http://i201.photobucket.com/albums/aa183/Saikological/tag%20color_zpspjm5uya4.jpg
Hope you can help.
Hello Saikological,
Use the code below and place it in Theme panel -> Custom CSS area.
The code is ->
.td-tags a {
color:red;
}
The result is here -> https://www.screencast.com/t/7VxIqy2MNH
Thanks.
Your the best! Thanks a lot; perfect help 😉
An additional question if i may:
1. How do i reduce the remove the space between the logo and the subfooter? I want to reduce general height of the footer slightly, make it more compact. Is this possible?
2. Can i put a “|” between the menu items in the subfooter?
please see screen in link, for exactly what i mean.
http://i201.photobucket.com/albums/aa183/Saikological/footer%20help_zpssuuavycm.jpg
Hi mate, thanks for your imput.
the space between the logo in footer and subfooter is also not really decreased. Any ideas?
thanks again!
Hi Catalin,
Ive tried the code, but basically nothing works. Also tried with some extra spaces like below, but again; nothing. Any more suggestions?
.td-footer-wrapper{
padding-bottom: 0 !important;
}
Hi,
Let’s try and find a solution here. So you want the footer logo to be displayed closer to the sub-footer. I could remove the margin bottom
– https://www.screencast.com/t/0yrf8uiUTlM
.td-footer-template-9 .widget_text {
margin-bottom: 0;
}
That would reduce the space between the footer logo and sub-footer by 38px.
Thanks
Hi mate,
after applying the code, there is still some space left between logo and the subfooter. is there any way to reduce that last bit of unused space?
It would be possible by setting a negative margin instead of the 0 value and force it lower
– https://www.screencast.com/t/PIF5rKVc
So remove the last one and enter this one instead
.td-footer-template-9 .widget_text {
margin-bottom: -20px;
}
Awewsome Simion, that is what works. Thanks a bunch for the great support!