@Raminder:
1) I want 4 sections in the footer-sidebar, is this possible?
— Sorry there is no option to add 4 sections in footer Sidebar. You might want to try “Catch Kathmandu Pro” for 4 sections in Footer Sidebar. I have noted this and will forward this and will try to add in future version updates in Everest Pro theme.
2) Footer-sidebar, I want all the writing in a certain colour, but I am unsure how to reference this in the CSS (I have tried a few things).
— You can add the following css in “Appearance => Theme Options => Custom CSS” box.
/* For Titles */
#footer-sidebar .widget-title,
#footer-sidebar .widget-title a {
color: #fff;
}
/* For Links */
#footer-sidebar .widget-area .widget a,
#footer-sidebar .widget-area .widget a:hover {
color: #fff;
}
/* For Text */
#footer-sidebar .widget-area .widget {
color: #fff;
}
3) I want a title for the twitter feed in the footer.
— Sorry don’t know about this as this in not our theme feature. I think you have added through plugin. So, you need to check plugin settings and widgets title.
4) I want to edit the font and size of the writing of the menu links in the footer
— You can add the following css in “Appearance => Theme Options => Custom CSS” box.
#footer-sidebar .widget-area .widget.widget_nav_menu a {
font-family: "Times New Roman",Times,serif;
font-size: 14px;
}
5) I want to add a line under each title (just a little preference).
— You can add the following css in “Appearance => Theme Options => Custom CSS” box.
#footer-sidebar .widget-title {
border-bottom: 1px solid #e6e6e6;
}