Topic Resolution: Resolved
  • Closed
  • D
    Spectator
    July 29, 2015 at 12:45 am #19306

    How can I fully customize the widget header with color or an image?

    So far, I have found only one option to do so, and it makes the color a dark gray maybe even black. I would like to use different colors or even upload an image. How can this be done?

    Thank you in advance for the reply.

    D
    Spectator
    Posts: 40
    August 2, 2015 at 11:58 am #19487

    Also, why does that image show in the post…the watermark-looking one with a camera? Is that for a featured image? Where do I eliminate it?

    Imran
    Spectator
    Posts: 402
    August 3, 2015 at 3:12 pm #19507

    Hi Donna,

    In regard to customizing the three tabs: “Poplular, Recent, Comments”, you can change the values according to your requirement into the given code below. Please add the following code into your Custom CSS field:

    .evolve_tabs .widget-content {
    border: 2.5px solid #c58d01;
    }

    .tab-holder .tabs li {
    background: #e3e3e3;
    }

    li.active a {
    background: #B73B3B !important;
    }

    To achieve the required changes for the two widgets left of the content, you can use the following code into your custom CSS field:

    #secondary-2 .widget-title-background {
    background: #986E05 !important;
    }

    #secondary-2 .widget-content {
    border: 2.5px solid #986E05 !important;
    background: #e3e3e3 !important;
    }

    Thirdly, the images shows in your posts with a camera, and if you wish to hide the image when you haven’t set any image in any of your post, so you can use the following code into your custom CSS:

    .hentry:not(.has-post-thumbnail) .thumbnail-post {
    display: none;
    }

    Thanks.