Change title and slogan positions in trailer box
Hello,
How can I replace positions of slogan and title in the trailer box?
Now Slogan on the top and Title under it but I need Title on the top and Slogan under it.
Nick
Comments
sorry but this will be not possible. You would have to modify the theme files in order to do it.
thanks
Thank you for your answer.
Can you please tell me what files I have to modify to make it possible?
Looking forward to hearing from you.
Kind regards,
thanks
It is possible in css:
.trailer_box .desc{display: flex; flex-direction: column;}
.subtitle {order: 1;}
h2 {order: 0;}
I hope that someone will use this code ?