• Resolved JeroenSch

    (@jeroensch)


    Hi,

    After the update the recent posts are now being published as a slider. I like it but is there a possibility to f.e. adjust the text continue reading and the color of the next/previous buttons?
    I also had different widgets right to the posts, is there a possibility to ad a widget under the carousel?
    Anyone knows how to change the color of the buttons in the image slider on the homepage?

    Thx

Viewing 1 replies (of 1 total)
  • Theme Author inkthemescom

    (@inkthemescom)

    Hello,

    As per your query related to alignment of “continue reading” box, you just need to paste the CSS code given below in Custom CSS field
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    .flexslider_blog li.blog_item .flex_content a.read_more {
         margin-top: 328px;
      }

    NOTE: please adjust margin-top as per your requirement.

    Now, regarding your another query i.e. was to change color of next and previous button, for that you just all have to paste below CSS code in Custom CSS field:

    .flexslider_blog .flex-direction-nav .next {
          background: red url(images/next.png) center no-repeat;
    }
     .flexslider_blog .flex-direction-nav .prev {
          background: red url(images/prev.png) center no-repeat;
       }

    Below code is to change the color of next and previous section when user place the cursor over there..

    .flexslider_blog .flex-direction-nav .next:hover {
        background: green url(images/prev.png) center no-repeat;
    }
    .flexslider_blog .flex-direction-nav .prev:hover {
        background: green url(images/prev.png) center no-repeat;
    }

    NOTE: Please change color as per your requirement.

    Thanks..

Viewing 1 replies (of 1 total)

The topic ‘update carousel slider’ is closed to new replies.