Home › Forums › CSS › 2 column with 2 differents fullscreen background? › Reply To: 2 column with 2 differents fullscreen background?
November 21, 2016 at 4:28 am
#248059
Participant
Glad to help. Maybe you could explain what the issue is? Getting background images correct for all screen size ratios is usually troublesome. Using cover
is as easy and close as it gets. But from what I suspect might be the trouble, background-position
could possibly help – to center the fullscreen images:
.et_pb_row.et_pb_row_0.et_pb_equal_columns.et_pb_gutters1.et_pb_row_fullwidth {
background-position: 50% 50%;
}
That’s a horrible selector by the way (corresponding with .parent()
in the script) but I thought I’d be as specific as possible with it.