This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Option 1: This option uses one third of available width for image and two third for the content area. (default is 50%) | |
@media screen and (min-width: 981px){ | |
.et_pb_column_3_4 .et_pb_post_extra.el_dbe_full_width .post-media{ | |
width: calc((100% - 120px) / 3); | |
} | |
.et_pb_column_3_4 .et_pb_post_extra.el_dbe_full_width .post-content{ | |
width: calc((100% - 120px) / 3 * 2); | |
} | |
} |
NewerOlder