Avada Forums Community Forum Tagline for Content 3 in Header 4 Reply To: Tagline for Content 3 in Header 4

elcomportal
Participant
Post count: 1

Hi,
my solution for the same problem:
Add the following lines to the Custom CSS section


.fusion-header-v4, .fusion-logo {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: justify;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}