@Angel:
1. Sorry, that is how the WordPress Excerpt text works. If you want HTML code with formatting then try “Image Content” in Featured Content Type. Otherwise, you need to build child theme. For child theme refer to http://catchthemes.com/blog/create-child-theme-wordpress/ and then copy function catchkathmandu_featured_content_page()
to your child theme functions.php
file and edit it.
2. What do you want to change that next and previous arrow in the slider to. If you want to just change it from css. Then you can use the following css element and add your custom css in “Appearance => Theme Options => Custom CSS” box:
#slider-nav a.slide-previous { }
#slider-nav a.slide-next { }
But if you want to change manually to text, then you need to build child theme and then copy function catchkathmandu_image_sliders()
to your child theme functions.php file and edit it.