Course Content
Advanced
0/31
Elementor: A Complete Tutorial
About Lesson

This video is embedded from Youtube and here’s the original one.

0:00 Introduction
0:50 Create a New Header
2:00 Fix Header & Amend Width
2:30 Add Media Query for Mobile View
3:30 Populate Header
4:00 Rotate Navigation
4:30 Space Out Elements
4:50 Check Responsive Views
5:20 Amend Mobile View
5:50 Style Mobile Menu
6:45 Save & Assign Header Template
6:50 See Finished Header
7:00 Recap

Resources:

Custom CSS:

selector{

    width: 100px;

    position:fixed;    

}

@media all and (max-width: 767px){

    selector{

        width:100%;

        height:100px;

    }

}

@media all and (min-width:767px){

    selector{

    writing-mode: vertical-rl;

    transform: scale(-1);

    }

}

0% Complete
Scroll to Top