Forum replies created

    In reply to Image borders
    Denzel Chia
    Moderator
    Posts: 2656
    22.06.2015 at 08:14 #18412

    Hi,

    You are welcome!

    Regards,
    Denzel

    Denzel Chia
    Moderator
    Posts: 2656
    22.06.2015 at 03:28 #18408

    Hi,

    Sorry, evolve:Tabs widget does not support this feature. It only supports popular posts, recent posts and comments.
    Sorry, we do not support custom coding.

    Thanks!
    Denzel

    Denzel Chia
    Moderator
    Posts: 2656
    22.06.2015 at 03:20 #18406

    Hi,

    Please try the following
    .entry-title {
    color: #c62020 !important;
    }

    Screenshot http://prntscr.com/7jsyfs

    Thanks!
    Denzel

    Denzel Chia
    Moderator
    Posts: 2656
    21.06.2015 at 16:52 #18400

    You are welcome!

    Denzel Chia
    Moderator
    Posts: 2656
    21.06.2015 at 16:23 #18398

    Hi,

    Set up your revolution slider in your SLIDER OPTIONS. http://prntscr.com/7jlf0u
    Then enter your content boxes shortcode in WordPress Editor. http://prntscr.com/7jleyl
    You will get your revolution slider on top of your content boxes. http://prntscr.com/7jldtg

    I think these are already very clear and simple instructions. Please kindly follow them.

    The following is a set of content boxes with the Learn More button shortcode. You will only need to change the gradient_colors for each button. You the following and edit them for your own use.

    [content_boxes layout="icon-on-top" iconcolor="#ffffff" circlecolor="#627e96" circlebordercolor="#627e96" backgroundcolor=""]

    [content_box title="Flexible" icon="fa-wrench" image="" link="/#" linktarget="" linktext="" animation_type="fade" animation_direction="up" animation_speed="1"]Lorem ipsum dolor sit amet, consectetur adipiscing elit dolor pellentesque nibh.

    Learn More
    [/content_box]

    [content_box title="Responsive" icon="fa-tablet" image="" link="/#" linktarget="" linktext="" animation_type="fade" animation_direction="up" animation_speed="1"]Donec sit amet neque accumsan turpis tempus viverra consectetur posuere.

    Learn More
    [/content_box]

    [content_box last="yes" title="Unlimited" icon="fa-magic" image="" link="/#" linktarget="" linktext="" animation_type="fade" animation_direction="up" animation_speed="1"]Nam condimentum nec mi aliquam accumsan phasellus nulla lorem gravida.

    Learn More
    [/content_box]

    [/content_boxes]

    As for your background color, you need to clear your web browser cache.

    Thanks!
    Denzel

    Denzel Chia
    Moderator
    Posts: 2656
    21.06.2015 at 15:57 #18395

    Hi,

    Please use the following in Theme Options -> Custom CSS

    .sb_toggle {
    padding:15px 30px; /**adjust the number 30px to widen the width of the tab**/
    }
    .sb_toggle:after {
    font-size: 14px;
    font-family:arial !important;
    content: 'Open' !important; /**You can change this text**/
    -webkit-font-smoothing: antialiased;
    display: block;
    height: 40px;
    position: absolute;
    left: 15px;
    top: 3px;
    color: #FFFFFF;
    }
    .sb_toggle.open:after {
    -webkit-font-smoothing: antialiased;
    content: "Close" !important; /**You can change this text**/
    }

    The above example will change the chevron to the Words “Open” and “Close”. See the code comments for additional instruction.

    These are screenshots of the above example http://prntscr.com/7jla7j
    http://prntscr.com/7jla7w

    Thanks!
    Denzel

    Denzel Chia
    Moderator
    Posts: 2656
    21.06.2015 at 10:07 #18392

    Hi,

    Please use the following in Custom CSS.

    .category .breadcrumbs {
    display: none !important;
    }

    Thanks!
    Denzel

    In reply to Music to my site
    Denzel Chia
    Moderator
    Posts: 2656
    21.06.2015 at 10:03 #18391

    Hi,

    You can visit the WordPress plugins forum to search for a suitable mp3 sidebar widget.
    https://wordpress.org/plugins/search.php?q=mp3+widget

    Thanks!
    Denzel

    In reply to Color Change
    Denzel Chia
    Moderator
    Posts: 2656
    21.06.2015 at 10:01 #18390

    Hi,

    It is in Theme Options -> Typography -> Blog Title font

    Thanks!
    Denzel

    Denzel Chia
    Moderator
    Posts: 2656
    21.06.2015 at 09:39 #18387

    Hi,

    Don’t remove any of your previous custom css codes.

    You can use media queries http://stephen.io/mediaqueries/
    For example in iPhone 6 portrait view. The following code will make your content fill up the width, instead of 75%.

    @media only screen
    and (min-device-width : 375px)
    and (max-device-width : 667px)
    and (orientation : portrait) {
    /* STYLES GO HERE */
    #primary {
    width: 100%;
    }
    }

    There are many possibilities, Please kindly try them out yourself.

    Thanks!
    Denzel