I need again your Support. This time regarding Footer. I am using Style 9.
http://www.screencast.com/t/xmRmPYMT3
1. There is a lot of Blank space between Footer Heading and Block Heading. How can I reduce this space from both sides.
2. I have used as Widget in Footer – TagDiv Text With Title. I need to give there Telphone Number in one line and as next line Email. Now everything is together.
3. Hier the Allignment of the Sub Footer is not Correct. http://www.screencast.com/t/xmRmPYMT3
Mobile View also is not correct http://www.screencast.com/t/cfUx1p4D, http://www.screencast.com/t/4pqrESuqs
4. How can I change the Text Color of Footer Text. I have changed in Theme Panel. But hier it is still Black.
Hello srampia,
1)If you want to adjust that white spaces, you have to use a bit of CSS code. Please try the code below and add it in Theme panel->Custom CSS area.
The code is ->
.td-main-content-wrap {
padding-bottom: 0px;
}
.td-footer-wrapper {
padding-top: 30px;
}
.td-sub-footer-copy{
padding-left:0!important;
}
The result -> http://screencast.com/t/7nh7chMp
2)If you want to have your email address and telephone number on different lines, you have to add
tag after each line, like this -> http://screencast.com/t/QlsB7A0J and the result -> http://screencast.com/t/8fL6OG468
3)I have checked your website and I saw that you have some custom modification and also, for sub footer section you have width fix and that thing break the responsiveness. Please try the code below and place it in Theme panel->Custom CSS area.
The code is ->
.td-sub-footer-container .td-pb-row {
width: 100%;
}
The result -> http://screencast.com/t/NpPo9zb79jj
4)If you want to change the color of the footer text you have to use a bit of CSS code. Try the code below and add it in Theme panel.
The code is ->
.td_block_text_with_title {
color:red;
}
The result -> http://screencast.com/t/O5VXKwv2xA
Hope this helps!
Thank you for the message!