Change color of button

Discussion in 'Appointway WordPress Theme' started by pauljw, Mar 17, 2015.

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

    pauljw Member

    Joined:
    May 31, 2013
    Messages:
    392
    Likes Received:
    3
    Hi,
    I have managed to change the colours of most of the home page. However, I am stuck on how to change the colour of the buttons in the home page feature area and the small thin lines that break up the menu at the top of the page.
    www.upholsterycleaningdoncaster.co.uk
    Thanks
    Paul.
     
  2. sameerwalkar

    sameerwalkar Guest

    Hi Paul,
    Kindly put your own custom color code in the below code.

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

    Code:
    .featurebox .featurebox_desc a.readmore {
      background: rgb(81, 166, 147);
      border-radius:28px;
    }
    .featurebox .featurebox_desc a.readmore:hover {
      background: rgb(81, 166, 147);
      }
    #menu .ddsmoothmenu li{
      border-right: 1px solid red;
    }
    #menu .ddsmoothmenu li a{
      background: none;
    }
    Regards,
    Sameer
     
  3. pauljw

    pauljw Member

    Joined:
    May 31, 2013
    Messages:
    392
    Likes Received:
    3
    Hi Sameer,

    Thanks for that it fixes the lines, but I also need to change the button colour and the text colour inside the button, these buttons in the screen shot.

    Thanks

    Paul.
     

    Attached Files:

  4. sameerwalkar

    sameerwalkar Guest

    Hi,

    Try and Use the below given code:

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

    Code:
    /****************below button color without hover***********/
    .featurebox .featurebox_desc a.readmore{
      background: red;
      border-radius: 28px;
    }
    /****************below button color on hover***********/
    .featurebox .featurebox_desc a.readmore:hover{
    background: rgb(31, 86, 203);
    }
     
    /******************for text color*************/
    .featurebox .featurebox_desc a.readmore {
      color: yellow;
    }
    Regards,
    Sameer
     
  5. pauljw

    pauljw Member

    Joined:
    May 31, 2013
    Messages:
    392
    Likes Received:
    3
    Hi Sameer, that worked! Just the circle and the line in the screen shot to fix now, sorry to be a pain, Paul.
     

    Attached Files:

    • up.jpg
      up.jpg
      File size:
      115.2 KB
      Views:
      4
  6. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hello paul!

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

    Code:
    .feature_testimonial .circle img {
      border: 3px solid red;
    }
    .footer_container .footer h4 {
      border-bottom: 1px solid red;
    }
    Thanks,
    Praveen
     
  7. pauljw

    pauljw Member

    Joined:
    May 31, 2013
    Messages:
    392
    Likes Received:
    3
    Almost there Praveen, just that last green line
     
  8. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hello paul!

    Please paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.
    Code:
    .footer_container .footer h4 {
    background:none
    }
    Thanks,
    Praveen
     
  9. pauljw

    pauljw Member

    Joined:
    May 31, 2013
    Messages:
    392
    Likes Received:
    3
Thread Status:
Not open for further replies.

Share This Page