Okay
  Public Ticket #3224600
Image Background for landing
Closed

Comments

  • arturoaguera started the conversation

    Hi there,

    I am trying to have one of the images in the library as the background for the entire landing page. I believe from the theme's customization menu there is no option to customize the skin as such, you can simply choose a color. Would you be able to help with this issue? Do I need to add some sort of Custom CSS? If so, I would appreciate if you could let me know which. Thank you.

  • [deleted] replied

    Hi Arturo,

    Please add the code below to your Custom CSS area:

    /* Background Image */
    .wrapper {
        background:url(ADD THE IMAGE URL HERE);
    }

    In the "ADD THE IMAGE URL HERE" area just add the URL of the image that you want to show.

    Thanks!

  • arturoaguera replied

    Hi Ylli,

    I have just done that and the background is still white. There has been no effect whatsoever. Could you please help me with this? Thank you.

  • [deleted] replied

    Hi arturoaguera,

    Please add the !important rule then, see example:

    .wrapper {
        background: url(https://artemaarquitectos.com/wp-content/uploads/2015/03/landscape4.jpg) !important;
        background-size: contain !important;
    }

    Thanks!