• Resolved windofchange87

    (@windofchange87)


    Hi, how can I change the fixed image that is in the header of the static pages?
    Can I also customize it for each one using the is_page function?

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi @windofchange87,

    If you need static image on all static page kindly use below code in custom css field,

    .page-mycarousel .img-responsive {
    content: url("https://cdn.pixabay.com/photo/2017/07/18/18/24/dove-2516641_960_720.jpg") !important;
    }

    And if you need different images on different pages kindly use below code in custom css field, You will need to page-id for this kindly follow the document given below for how to get Page-id,
    https://www.competethemes.com/blog/find-page-id/

    .page-id-44 .page-mycarousel .img-responsive {
    content: url("https://cdn.pixabay.com/photo/2016/11/14/04/14/asia-1822569_960_720.jpg") !important;
    }

    Changed images url according to your need.

    Thanks

    Thread Starter windofchange87

    (@windofchange87)

    Sorry @imranaliweb,
    Although not related to the topic, but can you help me how to enter a second menu in the footer?

    Thread Starter windofchange87

    (@windofchange87)

    I tried as suggested by @imranaliweb, but not the image is replaced, but exactly in which file I find the div that contains the image so as to replace it directly there.
    thank you

    Hi@windofchange87

    For this find page-header-bg.jpg image in Images Folder in theme package then replace your image with page-header-bg.jpg name.

    then check your website.

    Thanks.

    Thread Starter windofchange87

    (@windofchange87)

    I did as suggested, but this precludes you from customizing it for each page.
    Thanks

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Edit fixed image on pages’ is closed to new replies.