Syahir Hakim

Keymaster

Forum Replies Created

  • Admin

    In reply to: Coloristic

    #30340

    It’s possible, but not via the theme’s colour options. You would need to write some CSS for each of the school. Post a link to your site so that we can take a look.

    Quote:
    Maybe I can edit php file to change it?

    Never, ever, do this. If you edit any of the theme’s files, those edits will be lost the next time you update the theme.

    Admin

    In reply to: Homepage-name

    #30296

    Moved to Support. Please post in the correct section next time. Please also include the link to your site so that we can take a look.

    Admin

    In reply to: Javascript mouse coordinate help

    #30339

    Moved to Support. Please post in the correct section next time.

    Please also include the link to your site so that we can take a look.

    Admin

    Those borders are not added by the theme, but try inserting this into the theme’s Custom CSS option to remove it:

    #view .pl .t1 .bdr {
    border: none !important;
    }
    Admin

    In reply to: author -> bbp_user

    #30306

    Try adding this to your child theme’s functions.php file:

    function graphene_redirect_author_page(){
    if ( ! is_author() ) return;

    wp_redirect( get_user_profile_link( get_the_author_meta( 'ID' ) ) );
    }
    add_action( 'template_redirect', 'graphene_redirect_author_page' )
    Admin

    In reply to: My website using Graphene

    #30241

    Looks better now 🙂 You’d probably want to remove the thin border for the footer widget though. Don’t really need it with the videos.

    The thing with the secondary menu is that you’d want to have as few top-level menu items as possible so that visitors won’t be lost. Frankly, anything over a line is just too much. You’d want visitors to be able to grasp what’s available on your site at a single glance.

    Admin

    In reply to: display on homepage

    #30206

    Add this code to your child theme’s functions.php file:

    function graphene_move_homepage_panes(){
    remove_action( 'graphene_bottom_content', 'graphene_display_homepage_panes' );
    add_action( 'graphene_top_content', 'graphene_display_homepage_panes' );
    }
    add_action( 'template_redirect', 'graphene_move_homepage_panes' );
    Admin
    Admin

    In reply to: Widge shown in the wrong place

    #30235

    Your latest post has an unclosed <div> in the content somewhere.

    Admin

    In reply to: My website using Graphene

    #30238

    A few suggestions from a brief look on the site:

    • Remove the visitor counter in the footer
    • Group together some of the secondary menu items so that the entire secondary menu is only a single line
    • The paragraph text on your front page all uses the h5 element instead of p. Change them to p.
    • Perhaps add a thin, light border around each widget
    • Change the slider animation from slide to fade
    • I would also think that placing the slider at the top would be better
    • You’ve placed an email address in the Contact page without any protection. This is a prime target for spambots. Removing the email address altogether should be fine, since you’ve already provided a contact form there.
    • In archive page (such as this one), there are too many borders in between post. One border should be enough, rather than two at the moment.
    • Perhaps change the colour scheme to match the Samoan flag colour?
    • Background is too plain. A light, patterned background would be nice.

    The videos in the footer widget area looks cool though.

Viewing 10 posts - 3,001 through 3,010 (of 6,030 total)