• Closed
  • John Heithaus
    Spectator
    06.09.2015 at 01:19 #20445

    as another user wrote: “how can I remove the allocated header, menu & footer area so only the content page is visible and without changing back when evolve updates?” May I have CDD code to

    also — how can I modify (by making more transparent or adding a lighter HEX# color) the dark great color on the horizontal bar appearing in the “bootstrap slider”

    Denzel Chia
    Moderator
    Posts: 2656
    06.09.2015 at 17:16 #20453

    Hi,

    Please post your website url.
    I will try to provide you with a Custom CSS solution.

    Thanks!

    John Heithaus
    Spectator
    Posts: 2
    06.09.2015 at 19:55 #20460
    This reply has been marked as private.
    Denzel Chia
    Moderator
    Posts: 2656
    07.09.2015 at 10:42 #20469

    Hi,

    Please use the following codes in your Theme Options-> Custom CSS

    .header, .container-menu, .footer {
    display: none !important;
    }
    .carousel-caption h2 {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0 !important;
    }

    Screenshot of result. http://prntscr.com/8dijsy

    Thanks!

    John Heithaus
    Spectator
    Posts: 2
    07.09.2015 at 18:29 #20483
    This reply has been marked as private.
    Denzel Chia
    Moderator
    Posts: 2656
    07.09.2015 at 21:00 #20492

    Hi,

    Please try the following codes. It removes the “dark” horizontal box in the slider.

    .carousel-caption h2 {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0 !important;
    }
    .carousel-caption {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0 !important;
    }

    The rgba value is for color. For example if you want blue color, change rgba(0, 0, 0, 0) to rgb(0,0,255)

    Please refer to this chart http://www.december.com/html/spec/colorrgbadec.html or any rbga colorpicker.

    Thanks!