jumbotron tltle: space first, second and third words

With the Jumbotron and the first, second… words can I place the first word on a line by itself and the second and third words independent also?

I found a way to accomplish what I wanted to do, at least in desktop mode. I’m going to have to figure out how this theme works with media quires. But at least its a start. It breaks a other screen sizes. What I did was find the “front-page-bottom-header.php” file in the editor and add a “first-word-title” and a “second-word-title” class to the span with the “data-customizer” as in: echo '<span class="first-word-title" data-customizer="first-row-from-title">' . illdy_sanitize_html( $first_row_from_title ) . '</span><span class="span-dot first-span-dot">' . __( '.', 'illdy' ) . '</span>'; } ?> <?php if ( $second_row_from_title ) { echo '<span class="second-word-title" data-customizer="second-row-from-title">' . illdy_sanitize_html( $second_row_from_title ) . '</span><span class="span-dot second-span-dot">' . __( '.', 'illdy' ) . '</span>';

then in the Addional CSS section of the Customizer I used the classes to space the words the way I want them as in:


.first-word-title{position:relative;
bottom:80px;left:250px;}
.second-word-title{position:relative;
right:180px;}

Of course, it breaks at different screen sizes but I am going to work on that unless someone in the Forum knows what I need to do to make the title Responsive.

I was able to employ media queries using a WP plugin called Themeover.

Hi @erazer55,

Did you solve your request?

Thanks,

Cristian