Syahir Hakim
KeymasterKuala Lumpur, Malaysia
When not perched on my workspace, I tremendously enjoy hiking in the bushes and climbing mountains. They serve as much-needed refuges from the pretense of cities.
Forum Replies Created
-
Admin
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
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
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: Removing gray borders from table cells on affiliate site
July 8, 2012 at 11:08 pm #30328Those 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
Try adding this to your child theme’s
functions.phpfile: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
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
Add this code to your child theme’s
functions.phpfile: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
Your latest post has an unclosed
<div>in the content somewhere.Admin
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
h5element instead ofp. Change them top. - 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.
