Remove caption over slider, plus

Discussion in 'Harrington- A WordPress Business Theme.' started by jordielindstrom, Feb 4, 2014.

  1. jordielindstrom

    jordielindstrom New Member

    Joined:
    Mar 2, 2012
    Messages:
    27
    Likes Received:
    0
    Hi,

    How would i remove the caption box over the slider, it in grey colour and says Read More by default, would like to remove whole thing?

    How can I change font colour of tabs for pages listed up top, asked a similar question before but the code didnt work?

    Anyway to get the social media icons up the top?

    Can I reduce the gap between the page tabs up the top?


    Thanks heaps.
     
  2. Piyush

    Piyush Support Staff

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

    1. Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .sy-caption-wrap {
    display: none;
    }
    
    This will remove the caption box from slider.

    2. Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    #menu li.current-menu-item a, #menu li.current_page_item a, #menu li.current-menu-parent a, #menu li.current_page_parent a, #menu li a.selected, #menu li a:hover {
    background: red;
    }
    #menu .ddsmoothmenu li li a.selected, #menu .ddsmoothmenu li li a:hover{
    background: red;
    } 
    In place "red" you can put your color or color code.
    This will change the menu tab background color.

    3. Unfortunately there isn't a way to do that with our theme unless you custom code something up. Sorry.
    But I would like to suggest you that use any social media plugin for this issue.
    You can search your required plugin on WordPress.org site.

    4. Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .header_container {
    padding-top: 15px;
    }
    #menu li.current_page_item {
    padding-top: 35px;
    } 
    You can adjust the value of "padding-top" as per your requirment.
    This will solve your issue.
     

Share This Page