franckcqfd
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Quark] Dimensions of featured imagesWith this plugin, it’s perfect ! Thanks ??
Forum: Themes and Templates
In reply to: [Quark] Dimensions of featured imagesI would to “resize” automatically the featured images, so they are automatically adapted to the width of the pages ??
Forum: Themes and Templates
In reply to: [Quark] How to remove the grey banner in the header BackgroundsThanks for your response ??
Forum: Themes and Templates
In reply to: [Quark] How to remove the grey banner in the header BackgroundsWith the result on the website ??
Forum: Themes and Templates
In reply to: [Quark] How to remove the grey banner in the header BackgroundsI can’t find this… I would to retire the banner on the pages, except to the home page, with this code :
</div> <!-- /#headercontainer --> <div id="bannercontainer"> <div class="banner row clearfix"> <?php if ( is_front_page() ) { <div id="bannercontainer"> <div class="banner row clearfix"> // Count how many banner sidebars are active so we can work out how many containers we need $bannerSidebars = 0; for ( $x=1; $x<=2; $x++ ) { if ( is_active_sidebar( 'frontpage-banner' . $x ) ) { $bannerSidebars++; } } // If there's one or more one active sidebars, create a row and add them if ( $bannerSidebars > 0 ) { ?> <?php // Work out the container class name based on the number of active banner sidebars $containerClass = "grid_" . 12 / $bannerSidebars . "_of_12"; // Display the active banner sidebars for ( $x=1; $x<=2; $x++ ) { if ( is_active_sidebar( 'frontpage-banner'. $x ) ) { ?> <div class="col <?php echo $containerClass?>"> <div class="widget-area" role="complementary"> <?php dynamic_sidebar( 'frontpage-banner'. $x ); ?> </div> <!-- /.widget-area --> </div> <!-- /.col.<?php echo $containerClass?> --> <?php } } ?> } ?> </div> <!-- /.banner.row --> </div> <!-- /#bannercontainer --> <?php } <div id="maincontentcontainer">
Forum: Themes and Templates
In reply to: [Quark] How to remove the grey banner in the header BackgroundsThanks you ! But it’s doesn’t work : I have a syntax error in the code. My stylesheet is :
<?php /** * The Header for our theme. * * Displays all of the <head> section and everything up till <div id="maincontentcontainer"> * * @package Quark * @since Quark 1.0 */ ?><!doctype html> <!-- paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/ --> <!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" <?php language_attributes(); ?>> <![endif]--> <!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" <?php language_attributes(); ?>> <![endif]--> <!--[if IE 8]> <html class="no-js lt-ie9" <?php language_attributes(); ?>> <![endif]--> <!-- Consider adding a manifest.appcache: h5bp.com/d/Offline --> <!--[if gt IE 8]><!--> <html class="no-js" <?php language_attributes(); ?>> <!--<![endif]--> <head> <meta charset="<?php bloginfo( 'charset' ); ?>" /> <!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame --> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title><?php wp_title( '|', true, 'right' ); ?></title> <meta http-equiv="cleartype" content="on"> <!-- Responsive and mobile friendly stuff --> <meta name="HandheldFriendly" content="True"> <meta name="MobileOptimized" content="320"> <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0"> <link rel="profile" href="https://gmpg.org/xfn/11" /> <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" /> <?php wp_head(); ?> </head> <body <?php body_class(); ?>> <div class="visuallyhidden"><a href="#primary" title="<?php esc_attr_e( 'Skip to main content', 'quark' ); ?>"><?php _e( 'Skip to main content', 'quark' ); ?></a></div> <div id="wrapper" class="hfeed site"> <div id="headercontainer"> <header id="masthead" class="site-header row clearfix" role="banner"> <div class="col grid_5_of_12 site-title"> <h1> <a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name' ) ); ?>" rel="home"> <?php $headerImg = get_header_image(); if( !empty( $headerImg ) ) { ?> <img src="<?php header_image(); ?>" height="<?php echo get_custom_header()->height; ?>" width="<?php echo get_custom_header()->width; ?>" alt="" /> <?php } else { echo get_bloginfo( 'name' ); } ?> </a> </h1> </div> <!-- /.col.grid_5_of_12 --> <div class="col grid_7_of_12"> <div class="social-media-icons"> <?php echo quark_get_social_media(); ?> </div> <nav id="site-navigation" class="main-navigation" role="navigation"> <h3 class="menu-toggle assistive-text"><?php _e( 'Menu', 'quark' ); ?></h3> <div class="assistive-text skip-link"><a href="#content" title="<?php esc_attr_e( 'Skip to content', 'quark' ); ?>"><?php _e( 'Skip to content', 'quark' ); ?></a></div> <?php wp_nav_menu( array( 'theme_location' => 'primary', 'menu_class' => 'nav-menu' ) ); ?> </nav> <!-- /.site-navigation.main-navigation --> </div> <!-- /.col.grid_7_of_12 --> </header> <!-- /#masthead.site-header.row --> </div> <!-- /#headercontainer --> <?php if ( is_front_page() ) { <div id="bannercontainer"> <div class="banner row clearfix"> // Count how many banner sidebars are active so we can work out how many containers we need $bannerSidebars = 0; for ( $x=1; $x<=2; $x++ ) { if ( is_active_sidebar( 'frontpage-banner' . $x ) ) { $bannerSidebars++; } } // If there's one or more one active sidebars, create a row and add them if ( $bannerSidebars > 0 ) { ?> <?php // Work out the container class name based on the number of active banner sidebars $containerClass = "grid_" . 12 / $bannerSidebars . "_of_12"; // Display the active banner sidebars for ( $x=1; $x<=2; $x++ ) { if ( is_active_sidebar( 'frontpage-banner'. $x ) ) { ?> <div class="col <?php echo $containerClass?>"> <div class="widget-area" role="complementary"> <?php dynamic_sidebar( 'frontpage-banner'. $x ); ?> </div> <!-- /.widget-area --> </div> <!-- /.col.<?php echo $containerClass?> --> <?php } } ?> } ?> </div> <!-- /.banner.row --> </div> <!-- /#bannercontainer --> <?php } <div id="maincontentcontainer">
What is the problem ?
Forum: Themes and Templates
In reply to: [Quark] How to remove the grey banner in the header BackgroundsThanks you. But how delete the fields ? I’ve an error on my pages. Did you have the complete code for this section ?
Forum: Themes and Templates
In reply to: [Quark] How to remove the grey banner in the header BackgroundsThanks you for this response.
How to purpose the Front Page Banner Widget on the home page, but remove the banner on the single posts and pages ? I would to purpose only the header on single posts, but my widget for visitors on the home page.Forum: Themes and Templates
In reply to: [Quark] Banner: Change for each page & make responsiveHi Anthony,
How to insert the category menu in the gray bar under the header or, if it is not possible, to remove this section and replace it with a border?