Slide description font and description styling

Discussion in 'Figero WordPress Theme' started by rexmanaster, Dec 6, 2013.

  1. rexmanaster

    rexmanaster Member

    Joined:
    Feb 18, 2012
    Messages:
    180
    Likes Received:
    4
    Hi,

    Can you please tell me:

    1. How can I remove the shadow from the Slide heading and description font?
    2. Is there any way to create a list in the Slide description? If yes, how?

    Thanks,
    Rex
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    1. Paste the following code in your Custom CSS
    (Appearance -> Theme Options -> Styling Options -> Custom CSS)

    Code:
    .slide .entry h2 {
    text-shadow: none;
    }
    .slide .entry p {
    text-shadow: none;
    }
    2. Go to the Appearance > Theme Option > Slider Settings panel in your dashboard and put code given below in the slide description section.

    Code:
    <ul>
    <li>Enter your first list text</li>
    <li>Enter your second list text</li>
    <li>Enter your nth list text</li>
    </ul>
    Through this code you can create the list in the slide description.
     
  3. rexmanaster

    rexmanaster Member

    Joined:
    Feb 18, 2012
    Messages:
    180
    Likes Received:
    4
    Excellent, thanks!

    Quick follow ups:
    1. The list font is very small now. How can I increase its size?
    2. The list font now has the text shadow. How can I remove it?
    3. Is it possible to use a different, symbol, e.g. a check mark, instead of the circle bullets for the list items?
    Thanks,
    Rex
     
  4. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
  5. rexmanaster

    rexmanaster Member

    Joined:
    Feb 18, 2012
    Messages:
    180
    Likes Received:
    4
  6. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
  7. rexmanaster

    rexmanaster Member

    Joined:
    Feb 18, 2012
    Messages:
    180
    Likes Received:
    4
    Ok, great, Piyush. Here is what I have now in Slide 1 Description. Problem is it's using this list style throughout the site. I only want to use this list style here and perhaps one or two other places. How can I contain it to only those places where it's needed?

    Thanks!

    <!DOCTYPE html>
    <html>
    <head>
    <style>
    ul
    {
    list-style-image:url('http://idenforcer.com/wp-content/uploads/2013/12/red-checkmark-small.png');
    }
    </style>
    </head>

    <body>
    <ul>
    <li>Intuitive Threat Detection</li>
    <li>Advanced Internet surveillance</li>
    <li>Proactive Alert System</li>
    <li>24/7/365 Live Personal Service</li>
    </ul>
    </body>
    </html>
     
  8. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello,

    For slider description paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS


    entry.png

    Code:
    .entry ul {
    list-style-image: url('http://idenforcer.com/wp-content/uploads/2013/12/red-checkmark-small.png');
    }
    It will put li image only at slider description area.

    Thanks & Regards
    Nitesh Raghuwanshi
     
  9. rexmanaster

    rexmanaster Member

    Joined:
    Feb 18, 2012
    Messages:
    180
    Likes Received:
    4
    Hi Nitesh,

    I've placed the suggested code in Custom CSS. With respect to the slide entry paragraph or list, I now have what's shown below.

    But it's now not displaying the red check marks. Thoughts?

    /*===REMOVE TEXT SHADOW FROM SLIDER PARAGRAPH AND TEXT AND CREATE IMAGE LIST===*/

    .slide .entry p {
    text-shadow: none;
    }
    .entry li {
    text-shadow: none;
    font-size: 16px;
    }

    .entry ul {
    list-style-image: url('http://idenforcer.com/wp-content/uploads/2013/12/red-checkmark-small.png');
    }
     
  10. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    Paste the following code in your Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS)
    instead of above shown code.

    Code:
    .slide .entry p {
    text-shadow: none;
    }
    .entry li {
    text-shadow: none;
    font-size: 16px;
    }
     
    .entry ul {
    list-style-image: url("http://idenforcer.com/wp-content/uploads/2013/12/red-checkmark-small.png");
    }
    This will solve your issue.
     

Share This Page