1 2 | var footerDate = new Date(); jQuery('#footer-info').html('Copyright © ' + footerDate.getFullYear()); |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | /******************* * FIXED HEADER ON MOBILE * * SOURCE: https://divilife.com/create-fixed-mobile-menu-divi/ * * */ @media (max-width: 980px) { .et_non_fixed_nav.et_transparent_nav #main-header, .et_non_fixed_nav.et_transparent_nav #top-header, .et_fixed_nav #main-header, .et_fixed_nav #top-header { position: fixed; } .et_mobile_menu { overflow: scroll !important; max-height: 83vh; } } |
Source: https://divilife.com/create-fixed-mobile-menu-divi
]]>1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | .pagination .alignleft a { color: rgba(255,255,255,0); position: relative; } .pagination .alignleft a:after { content: "« More Awesome Content..."; position: absolute; text-align: left; width: 200px; left: 0; color: #22BBF7; font-size: 14px; } .pagination .alignright a { color: rgba(255,255,255,0); position: relative; } .pagination .alignright a:after { content: "More Awesome Content... »"; position: absolute; text-align: right; width: 200px; right: 0; color: #22BBF7; font-size: 14px; } |