BuddyDev

Search

[Resolved] about search box & footer color

Tagged: 

  • Participant
    Level: Initiated
    Posts: 1
    Rika on #13997

    Hi,

    I’m using BuddyDocs’s theme. This is good template for my website. Thank you.

    I want to change search box & footer’s color.
    Could you tell me how to change the color.

    Best regards,

  • Keymaster
    (BuddyDev Team)
    Posts: 24211
    Brajesh Singh on #14006

    Hi Rika,
    Thank you for using BuddyDocs.

    I am going to look at it and will post back.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24211
    Brajesh Singh on #14092

    Hi Rika,
    Hope you are doing well.

    In order to change the colors, Please follow the following steps.

    1. Visit Dashboard->Customize
    2. On the customize Page, Please click on Additional Css

    3.In the additional css box, we will use css. Here is an example that you can copy and paste.

    
    #featured-box {
    	background: red;
    }
    
    #b-footer {
    	
    	background: green;
    }
    

    In the above example, we have changed the background of the page header to red and footer to green.

    we can either use the color name or the color code.

    You may pick color from here

    https://htmlcolorcodes.com/color-picker/

    and put the code like this

    
    
    #featured-box {
    	background: #FF0000;
    }
    
    #b-footer {
    	
    	background: green;
    }
    
    

    We have used hexadecimal color for the header(It is still red for example).

    In footer, when you change the background, you may want to change the text color and links color.

    To do that we may change our

    
    #b-footer {
    	
    	background: green;
    }
    
    

    to

    
    
    #b-footer {
    	
    	background: green;
           color: #333;
    }
    
    /* link*/
    #b-footer a{
      color: #333;
    }
    
    

    You can still use the hexadecimal colors for the color property too.

    Hope this helps.

    Regards
    Brajesh

  • Participant
    Level: Initiated
    Posts: 1
    Rika on #14095

    Hi Brajesh,

    Thank you for your advice.
    I could change the header & footer color! Thank you so much.

    Can I ask some questions about BuddyDocs’s theme in this forum?

    Best regards,

  • Keymaster
    (BuddyDev Team)
    Posts: 24211
    Brajesh Singh on #14106

    Hi Rika,
    Thank you for confirming.

    Please feel free to use the forum to ask any question.

    Regards
    Brajesh

The topic ‘ [Resolved] about search box & footer color’ is closed to new replies.

This topic is: resolved