Can you help me make some changes

Discussion in 'Appointway WordPress Theme' started by pauljw, Mar 7, 2014.

  1. pauljw

    pauljw Member

    Joined:
    May 31, 2013
    Messages:
    392
    Likes Received:
    3
    Hi,
    I need some help to make some changes.
    My site is: http://www.sheffieldcarpetcleaner.co.uk/

    I would like to change the colour of the menu bars They are blue and light blue at present. I would like to put in my own colour code.

    I would like to Change the colour of the telephone details (top right).

    I would also like to be able to put some text underneath the logo (Merlin Clean). Is it possible?

    Many thanks

    Paul.
     
  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:
    .menu_container {
    background: red;
    }
    
    In place of "red" you can put your color or color code.
    This will change the color of menu bar.


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

    Code:
    .call-us p {
    color: red;
    }
    
    In place of "red" you can put your color or color code.
    This will change the color of contact section text.

    3.
    Go to the header.php file present in your theme directory and paste the code given below in that file as shown in the image given below.

    Code:
    <p class="logo_text">Enter your text here</p> 
    [​IMG]

    This will solve your issue.
     
  3. pauljw

    pauljw Member

    Joined:
    May 31, 2013
    Messages:
    392
    Likes Received:
    3
    That's great, thank you. Is there a general way to change the colour of text/

    Thanks,

    Paul
     
  4. Piyush

    Piyush Support Staff

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

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

    Code:
    .header_container .header .alpha p {
    color: red;
    }
     
    In place of "red" you can put your color or color code.
    This will solve your issue.
     

Share This Page