Thanks for answering PhilGlew,
Here is exactly what I want to do:
From this (default):http://imgur.com/xTIWRII,BryOzt1#0
To this: http://imgur.com/xTIWRII,BryOzt1#1
The only solution I found for the moment is to add a blank pictures, but it just leaves too much blank space before the text.
Hope my images helps to understand what I would like to do.
Regards
-Hummel-
Hi Hummel,
I would simply deactivate them with css.
Open file: wp-content/themes/minamaze/style.css
Add this:
#section-home .entry-header {
display: none;
}
OR, go to line 1307 and add “display:none” to the styling there.
Like this:
#section-home .entry-header {
display: none; /* added this to disable the header */
position: relative;
transition: all 0.2s ease-in-out 0s;
width: 100%;
z-index: 2;
}