Skip to main content

Posts

Showing posts from July 16, 2023

Membuat Watermark Pada Halaman Website Undangan Dengan Elementor dan Custom CSS

 Berikut tutorialnya di youtube Code Css untuk tutorial menambahkan watermark pada halman website undangan di video ini https://youtu.be/5KsbKqTzVkE selector h2 { position: fixed; width: 800px; height: 200px; top: 50%; left: 50%; margin-top: -100px; margin-left: -300px; transform: rotate(-45deg); pointer-events: none; white-space: nowrap; z-index: 999999; } @media only screen and (max-width: 576px) { selector h2 { width: 400px; margin-left: -150px; } } Semoga Bermanfaat...!