Viewing 1 replies (of 1 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    This can be done with absolute positioning.

    Put the two elements just below the opening body HTML element, then apply the positioning CSS;

    #logo1,
    #logo2 {
     position: absolute;
    }
    
    #logo1 {
     top: 0;
     right: 0;
    }
    
    #logo2 {
     bottom: 0;
     left: 0;
    }

Viewing 1 replies (of 1 total)
  • The topic ‘Additional Images on background’ is closed to new replies.