In this tutorial I will show you how to create simple vertical header using Elementor Pro. Here I will use Elementor Pro features and few line of CSS code.
CSS for Menu
selector{
writing-mode: vertical-rl;
transform: scale(-1);
}
@media all and (max-width: 767px){
selector{
writing-mode: horizontal-tb;
transform: scale(1);
}
}

0 Comments