How to change color of the dots/separation dots between widgets and more?

Discussion in 'VideoCraft WordPress Theme' started by peterpohls, Jan 14, 2013.

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

    peterpohls Member

    Joined:
    Feb 5, 2012
    Messages:
    84
    Likes Received:
    1
    How to change color of the dots/separation dots between widgets and more?

    in the video window,top, footer and content_wrapper you can see lines of dots dividing the widgets etc.. how can i change colors of dots to orange?
    THX
     
  2. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .content h1.title {
    border-bottom: 1px dashed orange;
    }
    .footer_wrapper {
    border-bottom: 1px dashed orange;
    }
    .sidebar h3.title {
    border-bottom: 1px dashed orange;
    }
    .sidebar ul li {
    border-bottom: 1px dashed orange;
    }
    ul.videolist1 li, ul.videolist2 li, ul.videolist3 li {
    border-bottom: 1px dashed orange;
    }
    
     
    peterpohls likes this.
  3. peterpohls

    peterpohls Member

    Joined:
    Feb 5, 2012
    Messages:
    84
    Likes Received:
    1
    there is still a white doted line were the top below banner and body, and in body/footer ... tHX alot
     
  4. peterpohls

    peterpohls Member

    Joined:
    Feb 5, 2012
    Messages:
    84
    Likes Received:
    1
  5. peterpohls

    peterpohls Member

    Joined:
    Feb 5, 2012
    Messages:
    84
    Likes Received:
    1
  6. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .video_wrapper {
    border-top: solid 1px rgb(184, 53, 53);
    border-bottom: 1px dashed rgb(211, 47, 47);
    }
    .single_page_ratting {
    border-bottom: 1px dashed rgb(206, 65, 65);
    }
    .footer_wrapper {
    border-top: 1px dashed rgb(206, 59, 59);
    }
    .content-bar .post {
    border-bottom: 1px dashed rgb(168, 27, 27);
    }
    .top_wrapper {
    border-bottom: 1px solid rgb(134, 31, 31);
    }
    .page-heading h1 {
    border-bottom: 1px dashed rgb(150, 54, 54);
    }
    Add your color value in place of rgb.
     
    peterpohls likes this.
  7. peterpohls

    peterpohls Member

    Joined:
    Feb 5, 2012
    Messages:
    84
    Likes Received:
    1
    worked perfect.
     
  8. peterpohls

    peterpohls Member

    Joined:
    Feb 5, 2012
    Messages:
    84
    Likes Received:
    1
  9. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .page_container {
    background-color: rgba(000, 000, 000,0.9)!important;
    }
    .single_page_ratting {
    border-bottom: 1px dashed red;
    }
     
    peterpohls likes this.
  10. peterpohls

    peterpohls Member

    Joined:
    Feb 5, 2012
    Messages:
    84
    Likes Received:
    1
    Thank you so much worked perfect !!
     
Thread Status:
Not open for further replies.

Share This Page