A few bits to tidy up

Discussion in 'Squirrel WordPress Theme' started by spoonboy90, May 28, 2013.

Thread Status:
Not open for further replies.
  1. spoonboy90

    spoonboy90 Active Member

    Joined:
    Dec 20, 2012
    Messages:
    289
    Likes Received:
    28
    Location:
    Stoke-on-Trent, Staffordshire. UK
    Hi

    http://1066499389.1065524876.temp.prositehosting.co.uk/

    1) Remove the blank space below the 3 images where there is no text.
    2) Remove the while box on menu mouseover and active links.
    3) Remove some padding between the menu items so they are closer together.
    4) Change colour of 'Share Past... ...Friends' in the bottem homepage section to match other headings.

    Many Thanks
    Jamie
     
  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)
    to remove the blank space below the 3 images.
    Code:
    .feature-content {
    margin-bottom: 0px;
    }
    Adjust the value of margin-bottom as per your requirement.
    2). Paste the following code in your Custom CSS to remove the while box on menu mouseover and active links.
    Code:
    #menu li a:hover {
    background: none;
    color: white;
    }
    #menu li.current-menu-item a, #menu li.current_page_item a {
    background: none;
    color: white;
    }

    3). Paste the following code in your Custom CSS to remove the padding between the menu items.
    Code:
    #menu .ddsmoothmenu li {
    margin-left: 0px;
    margin-right: 0px;
    }
    Adjust the value of margin-left and margin-right as per your requirement.

    4). Paste the following code in your Custom CSS to change the color of Full Col Heading.
    Code:
    .index-fullwidth h3 {
    color: #4d4c4c;
    }
    Inplace of "#4d4c4c" you can put your color code or color.
     
  3. spoonboy90

    spoonboy90 Active Member

    Joined:
    Dec 20, 2012
    Messages:
    289
    Likes Received:
    28
    Location:
    Stoke-on-Trent, Staffordshire. UK
    All absolutly perfect.

    Many Thanks Piyush
     
Thread Status:
Not open for further replies.

Share This Page