Skip to:
Content
Pages
Categories
Search
Top
Bottom

Completely Blank Theme

  • Hello, Its my first time using buddypress and so far I like the features. What I want to do now is change the CSS completely. I followed the directions and seemed to get to a blank-ish theme.. but in the child theme I created my style.css file is not overriding the default stil.. my site is topleaguegaming.com if you want to check the code.

Viewing 1 replies (of 1 total)
  • this is my functions.php
    `<?php
    if ( !function_exists( ‘bp_dtheme_enqueue_styles’ ) ) :
    function bp_dtheme_enqueue_styles() {

    // You should bump this version when changes are made to bust cache
    $version = ‘20111109’;

    // Register stylesheet of bp-dusk child theme
    wp_register_style( ‘tlgtheme’, get_stylesheet_directory_uri() . ‘/style.css’, array(), $version );

    // Enqueue stylesheet of bp-dusk chid theme
    wp_enqueue_style( ‘tlgtheme’ );
    }
    add_action( ‘wp_enqueue_scripts’, ‘bp_dtheme_enqueue_styles’ );
    endif; ?>
    `

Viewing 1 replies (of 1 total)
  • The topic ‘Completely Blank Theme’ is closed to new replies.
Skip to toolbar