Logo Size at Top of Site

Discussion in 'Woodpecker WordPress Business Theme' started by itzcandy, Mar 31, 2014.

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

    itzcandy Member

    Joined:
    Dec 13, 2012
    Messages:
    102
    Likes Received:
    2
    I would like to increase the size of the logo at the top of the site. Is this possible? Which code should I use?

    Also - is there a way to customize the theme style sheet color?

    Also - Can I get rid of the directory in the image are of the pages? The one that looks like home>>contact>>directions and so forth?

    Also - Can I change the white background on either side of the pages?

    Also - Can I change the text color in the widget area?

    Also - Can I remove the social icons in the very bottom right of the page

    Thank you,

    Candy
     
  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:
    #logo {
    width: 650px;
    height: auto;
    }
     
    You can change the value of "width" as per your requirement.

    2. You can edit any existing color of the color scheme through the process given below.

    Firstly, go to the Appearance -> Theme Options -> Styling Options panel in your dashboard
    and select the pink color scheme from the Theme Stylesheet section.

    And then go to the Theme directory >css directory> color directory > pink.css file and edit pink.css file as instructed in the image given below.

    [​IMG]


    See the link for reference.
    http://www.inkthemes.com/how-to-edit-internal-files-through-ftp/07/

    I hope this will help you.

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

    Code:
    .brd-crm h1 {
    display: none;
    }
     
    4. Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .top-wrapper {
    background: white;
    }
    body {
    background: red;
    }
     
    In place of "red" you can put your color or color code.

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

    Code:
    .textwidget, .textwidget p ,.textwidget a ,.textwidget ul,.textwidget li,.textwidget span,.textwidget div{
    color:red;
    }
    .footer  h1,.footer  h2 ,.footer h3 ,.footer h4,.footer  h5,.footer  h6{
    color:red;
    } 
    In place of "red" you can put your color or color code.

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

    Code:
    .footer-social-icons {
    display: none;
    } 
     
  3. itzcandy

    itzcandy Member

    Joined:
    Dec 13, 2012
    Messages:
    102
    Likes Received:
    2
    Thank you!
     
Thread Status:
Not open for further replies.

Share This Page