Viewing 14 posts - 1 through 14 (of 14 total)
  • Author
    Posts
  • #1407382

    hello all
    I have the following question
    the footer has background images
    for example
    points-for-dark-background-compressed.png
    can these also be used as background in the colour section of a normal page?
    for example on the page link below:

    possibly per css per page number

    thanks in advance
    kind regards
    Frauz

    #1407409

    Hey schweg33,

    Thank you for the inquiry.

    You can select the patterns as overlay in the color section’s Styling editor. However, if you want to apply it as a background, you will need to use CSS. You can add a custom CSS code in the Quick CSS field to set the pattern as a background.

    Example:

    .avia-section {
        background-image: url(https://site.com/wp-content/themes/enfold/images/background-images/dots-for-dark-background-compressed.png);
        background-repeat: repeat;
    }
    

    You may need to apply a custom css class name or ID to the color section.

    // https://kriesi.at/documentation/enfold/add-custom-css/#enable-custom-css-class-name-support

    Best regards,
    Ismael

    #1407419

    hello ismael
    thanks for the feedback
    I have added this code to the Quick CSS
    See private content
    but nothing happens on this page

    thanks
    kind regards
    Franz

    #1407505

    Hi Franz,

    I have fixed it on your site, I have added !important to Ismael’s code and also fixed the image URL (private content).
    Please review yours site.

    Best regards,
    Nikko

    #1407513

    Thank you Nikko
    for this CSS part
    works great

    One more question
    when I create my own background image.
    what size would it have to be

    thanks in advance

    kind regards
    Franz

    #1407522

    Hi Franz,

    According to https://gs.statcounter.com/screen-resolution-stats/desktop/worldwide 1920 × 1080px is the most common monitor size that people are using, so I think you can start with that.
    It will still depend on your target audience which screen resolution they are using but if you don’t have any idea then I think we can use the stats on link I gave as a point of reference. I hope you find it helpful.

    Best regards,
    Nikko

    #1407527

    Thank you Nikko
    that fits also super so
    now one last question

    is it also possible to show the hint reasons per page?

    for example for the pages with the number
    7557
    12259 and
    2959

    thanks in advance
    kind regards
    Franz

    #1407575

    Hi Franz,

    I’m not sure what you mean with “show the hint reasons per page”, can you give us more context? or if you can give some visuals or screenshots, so we can further understand what you’re trying to achieve.

    Best regards,
    Nikko

    #1407595

    Sorry Nikko
    I have expressed myself incorrectly
    I mean this css code below:

    can also create the background per page
    for example on the page
    page nr. 12259
    and
    page nr. 7557
    and
    page nr. 2959

    if this is possible
    thank you
    kind regards Franz

    #1407601

    Hi Franz,

    I see, please add this CSS code and just change the background images’ url.

    #top.page-id-12259 .avia-section {
      background-image: url(https://dorfgeschichte.li/wp-content/themes/enfold/images/background-images/dots-for-dark-background-compressed.png) !important;
    }
    
    #top.page-id-7557 .avia-section {
      background-image: url(https://dorfgeschichte.li/wp-content/themes/enfold/images/background-images/dots-for-dark-background-compressed.png) !important;
    }
    
    #top.page-id-2959 .avia-section {
      background-image: url(https://dorfgeschichte.li/wp-content/themes/enfold/images/background-images/dots-for-dark-background-compressed.png) !important;
    }

    Best regards,
    Nikko

    #1407607

    hello Nikko
    thank you so it fits super
    but I can also specify several pages
    for example so: example below

    kind regards
    Franz

    #1407612

    Hi Franz,

    Yes, that’s correct as well and more efficient if you are using same background image for these pages :)

    Best regards,
    Nikko

    #1407635

    Thanks a lot
    Nikko
    for your help
    then you can close this ticket

    kind regards
    Franz

    #1407664

    Hi Franz,

    I’m glad that we could help you :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

Viewing 14 posts - 1 through 14 (of 14 total)
  • The topic ‘background images per page’ is closed to new replies.