Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter greyfox81

    (@greyfox81)

    Perfect! Adding a blank text widget in Left Widget Area worked!

    Thank you both so much for your help, it’s greatly appreciated!

    Thread Starter greyfox81

    (@greyfox81)

    I’m fairly sure, here is the widgets area (already checked Text and it’s not there)
    http://i.imgur.com/4X8sBWL.png

    I didn’t think about functions.php though, I will check that and report back. Thanks for your time and that suggestion!

    *edit: functions.php is as follows:

    <?php
    /**
     * Functions - Framework gatekeeper
     *
     * This file defines a few constants variables, loads up the core framework file,
     * and finally initialises the main WP Framework Class.
     *
     * @package RedLine
     * @subpackage Functions
     */
    
    	// default header style
    	$header_defaults = array(
    	'default-image'          =>  get_template_directory_uri() .'/library/media/images/header.jpg',
    	'random-default'         => false,
    	'width'                  => 960,
    	'height'                 => 200,
    	'flex-height'            => false,
    	'flex-width'             => false,
    	'default-text-color'     => 'FFF',
    	'header-text'            => true,
    	'uploads'                => true,
    	'wp-head-callback'       => 'header_style',
    	'admin-head-callback'    => 'admin_header_style',
    	'admin-preview-callback' => '',
    );
    	add_theme_support( 'custom-header', $header_defaults ); // custom header
    
    	if ( ! isset( $content_width ) ) $content_width = 520; // set the global width of the media content
    
    	set_post_thumbnail_size( 150, 150 ); // 150 pixels wide by 150 pixels tall, box resize mode
    
    	load_theme_textdomain( 'redline' , get_template_directory() . '/lang' ); // load localization files
    
    	/* Blast you red baron! Initialise WP Framework */
    
    	require_once( get_template_directory() . '/library/framework.php' );
    		WPFramework::init();
    
    ?>
    Thread Starter greyfox81

    (@greyfox81)

    *edit:
    Issue is now resolved.
    For anyone else that may need help with it, the location was in style.css under “#feedarea {“

    Thanks for your time leejosepho and big thanks to yulian (theme author) for your detailed help. Much appreciated!

    Thread Starter greyfox81

    (@greyfox81)

    Hi,
    I followed the steps in the provided links, but unfortunately it did not work. It basically adds the large white box, which covers the top nav buttons but I was unable to change the color of the text of the tagline and date/time using those steps.

    Example of the change:
    http://i.imgur.com/PeDAOCi.png

    Any other suggestions on where I can look to to change this color since it’s not located in the style.css?

    Thanks again for your time.

    Thread Starter greyfox81

    (@greyfox81)

    Thank you, I will try this out and report back.

    Thanks again!

Viewing 5 replies - 1 through 5 (of 5 total)