Hi Kat,
The problem is that you are using Catch Everest Theme and visiting Simple Catch Theme support forum. So, these two themes are totally different and css will not work. Please use appropriate support forum http://catchthemes.com/support-forum/forum/catch-everest-public/
I just check in your custom css and there is issue of extra bracket }
that you need to remove first. Go to “Appearance => Theme Options => Custom CSS” box and see your code as:
#featured-post .entry-header .entry-title a { color: #ff0000; }
}
#main #content ul.post-by { display: none; }
There you can see extra }
remove that and it should be as
#featured-post .entry-header .entry-title a { color: #ff0000; }
#main #content ul.post-by { display: none; }
1. Then to remove the entry meta, you can add the following css in “Appearance => Theme Options => Custom CSS” box:
.entry-meta { display: none; }
2. For slider text color, see the following css and then change the color code as per your need and add it in “Appearance => Theme Options => Custom CSS” box.
/* Slider Title Color */
#main-slider .entry-title a { color: #fff; }
/* Slider Title Hover Color */
#main-slider .entry-title a:hover { color: #000; }
3. To hide the content in the slier you can just add the following css in “Appearance => Theme Options => Custom CSS” box.
#main-slider .entry-content { display: none; }
Have nice day and from next time please check in support forum before you post it.
Regards,
Sakin