Viewing 18 posts - 1 through 18 (of 18 total)
  • Author
    Posts
  • #100899
    Floh
    Participant

    Hi,
    i have two questions

    1)i have a problem with the featured content. I don´t want the image of the page to be displayed at the featured content excerpt.
    I already tried out the following custom css:

    /* Featured content image*/
    #featured-content .featured-content-image {
    display: none;
    line-height: 0;
    }
    .single .featured-image { display: none; }
    .archive .featured-image { display: none; }
    .single #header-image { display: none; }
    .entry-container .wp-caption { display: none; }

    but nothing works out. I just want the featured posts/pages section without images. At the pages itself the image of the page should stay as it is.

    url: dogz.flohmi.at

    2)
    at the place where the logo is, we want an image too. so it should be the logo AND an image (like a background banner). where can I do this?

    Thank you very much!

    #100903
    Mahesh
    Participant

    @floh:
    1)i have a problem with the featured content. I don´t want the image of the page to be displayed at the featured content excerpt.
    => Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    #featured-content .featured-homepage-image {
        display: none;
    }

    2. at the place where the logo is, we want an image too. so it should be the logo AND an image (like a background banner)
    => Do you mean to add a background image to the header? If so, add the following CSS:

    #masthead {
        background-image: url("link to your desired image");
        background-position: 50% 50%;
        background-repeat: no-repeat;
        background-size: cover;
    }

    Note: Please replace link to your desired image in the above code with you desired image url.

    Let me know if any problem.

    Regards,
    Mahesh

    #101451
    Floh
    Participant

    Hi Mahesh,

    i tried so many times to post here my answer but it didn´t work.

    i changed the custom css the way you proposed but the banner won´t show up.

    her is my code:
    /* head banner*/
    #masthead {
    background-image: url(buddha.jpg;);
    background-position: 80% 50%;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    }

    what did i wrong?

    #101452
    Floh
    Participant

    even the change of the image-url doesn´t work out.

    /* head banner*/
    #masthead {
    background-image: url(..wp-content/themes/catch-base/images/headers/buddha.jpg;);
    background-position: 80% 50%;
    background-repeat: no-repeat;
    background-size: 80px 60px;
    }

    #101606
    Mahesh
    Participant

    @floh: Sorry for the late reply. Please post in your site url. You’ll need to put the full path of the image.

    Regards,
    Mahesh

    #101610
    Floh
    Participant

    Hi Mahesh,

    that doesn´t work either….

    /* head banner*/
    #masthead {
    background-image: url(dogz.flohmi.at/wp-content/themes/catch-base/images/headers/0245_banner.jpg;);
    background-position: 80% 50%;
    background-repeat: no-repeat;
    background-size: 80px 60px;
    }

    I don´t know why…

    thank your again in advance!

    #101615
    Mahesh
    Participant

    @floh: Try adding the following CSS:

    #masthead {
        background-image: url("http://dogz.flohmi.at/wp-content/themes/catch-base/images/headers/0245_banner.jpg");
        background-position: 80% 50%;
        background-repeat: no-repeat;
        background-size: 80px 60px;
    }

    Regards,
    Mahesh

    #101616
    Floh
    Participant

    Dear Mahesh,
    thank you now it works!
    have a great day!
    regards,
    floh

    #101620
    Mahesh
    Participant

    @floh: Thank you for your appreciation. Have a nice day!

    Regards,
    Mahesh

    #105561
    Floh
    Participant

    Dear Mahesh,

    sorry to bother you, but after the change to a new domain, there are some probs on the design. the banner image is not shown and the links at the very bottom of the page are blue instead of the color given in the custom css. it all worked fine already before the change of the domain.

    can you please help me?

    thank you so much!

    http://www.dogz.at

    #105564
    Floh
    Participant

    i

    #105565
    Mahesh
    Participant

    @floh: You’ll need to disable the plugin. Please delete the plugin, the very plugin that you are using to have the under construction page through FTP or cpanel. Its the only way.

    Regards,
    Mahesh

    #105567
    Floh
    Participant

    i deleted the plugin and can login now. but the other two problems still extists.

    thank you!

    #105617
    Mahesh
    Participant

    @floh: Please replace the masthead CSS in your custom CSS with the following CSS:

    #masthead {
        background-image: url("http://www.dogz.at/wp-content/themes/catch-base/images/headers/bannerwork3.jpg");
        background-position: 50% 50%;
        background-repeat: no-repeat;
        background-size: cover;
    }

    For link color in footer, add the following CSS:

    #site-generator a {
        color: #ff00ff;
    }

    Note: Please choose the desired color.

    Regards,
    Mahesh

    #105623
    Floh
    Participant

    Dear Mahesh,
    thank you very much for your help. everything worked out fine except the links inside the text (at posts and pages). they are still blue. they where in the correct color already before the change of the domain, i dont´t know why they changed now and how to fix it.

    could you help me please once more at this point?
    thank you so much!
    floh

    #105631
    Mahesh
    Participant

    @floh: Please add the following CSS:

    a {
        color: #d2940f;
    }

    Regards,
    Mahesh

    #105633
    Floh
    Participant

    ahhhh so it´s been the “.” that corrupted my css code. thank you!

    have a supernice and cosy christmas and a very happy new year! you helped me so much so far, thank you!

    you´re great!

    best regards and season greetings
    floh

    #105677
    Mahesh
    Participant

    @floh: Thank you for your appreciation. Happy Holidays! 🙂

    Regards,
    Mahesh

Viewing 18 posts - 1 through 18 (of 18 total)
  • The topic ‘Hide Image from featured content and Banner Image in Header’ is closed to new replies.