Forum Replies Created
-
AuthorPosts
-
ccarereParticipant
So I can't believe 3 years later I'm asking the same question!!! But it's not working for me!
I changed the background and filter to "none"
/* Front Page
--------------------------------------------- */
.image-section,
.solid-section {
clear: both;
text-align: center;
width: 100%;
}.image-section {
Background: none;
Filter: none;
display: table;
overflow: hidden;
table-layout: fixed;
width: 100%;
height: 100vh;
}.image-section .widget-area {
display: table-cell;
text-align: center;
vertical-align: middle;
}.image-section,
.image-section a {
color: #fff;
}.image-section a:focus,
.image-section a:hover,
.image-section .featured-content .entry-title a:focus,
.image-section .featured-content .entry-title a:hover {
color: #0680a2;ccarereParticipantYou're amazing.
Thanks Anita!
ccarereParticipantAs best as I could.
ccarereParticipantThank you!
That worked marvellously!!
ccarereParticipantThat worked beautifully, thank you!
ccarereParticipantThank you.
But I didn't find that filter...
I wouldn't know how to remove H1 tags if I found it either.Here's the Header php code on Genesis:
<?php
/**
* Genesis Framework.
*
* WARNING: This file is part of the core Genesis Framework. DO NOT edit this file under any circumstances.
* Please do all modifications in the form of a child theme.
*
* @package Genesis\Templates
* @author StudioPress
* @license GPL-2.0-or-later
* @link https://my.studiopress.com/themes/genesis/
*//**
* Fires at start of header.php, immediately beforegenesis_title
action hook to render the Doctype content.
*
* @since 1.3.0
*/
do_action( 'genesis_doctype' );/**
* Fires immediately aftergenesis_doctype
action hook, in header.php to render the document title.
*
* @since 1.0.0
*/
do_action( 'genesis_title' );/**
* Fires immediately aftergenesis_title
action hook, in header.php to render the meta elements.
*
* @since 1.0.0
*/
do_action( 'genesis_meta' );wp_head(); // We need this for plugins.
?>
</head>
<?php
genesis_markup(
[
'open' => '<body %s>',
'context' => 'body',
]
);if ( function_exists( 'wp_body_open' ) ) {
wp_body_open();
}/**
* Fires immediately after thewp_body_open
action hook.
*
* @since 1.0.0
*/
do_action( 'genesis_before' );genesis_markup(
[
'open' => '<div %s>',
'context' => 'site-container',
]
);/**
* Fires immediately after the site container opening markup, beforegenesis_header
action hook.
*
* @since 1.0.0
*/
do_action( 'genesis_before_header' );/**
* Fires to display the main header content.
*
* @since 1.0.2
*/
do_action( 'genesis_header' );/**
* Fires immediately after thegenesis_header
action hook, before the site inner opening markup.
*
* @since 1.0.0
*/
do_action( 'genesis_after_header' );genesis_markup(
[
'open' => '<div %s>',
'context' => 'site-inner',
]
);
genesis_structural_wrap( 'site-inner' );ccarereParticipantNot sure if I need to provide any more information...
ccarereParticipantI'm using Yoast
-
AuthorPosts