-
AuthorPosts
-
October 23rd, 2013 at 22:58 #13173Tim Turner
Hi all
I have recently installed the Parabola theme on my website http://www.trancefixxed.co.uk/ and I’ve got it mostly working the way I want, but have a few (hopefully straightforward) questions:
01 – How do you change the colour of the background of the ‘Title’ text (which appears with mouse-over) for the Presentation Columns?
(Currently white)02 – On my previous (child) theme, I added code for bespoke taxonomies in the functions.php file, but this doesn’t seem to work Parabola. Which PHP file should I added the code to?
Code I was using is:[Code]
// Add bespoke taxonomiesadd_action( ‘init’, ‘create_my_taxonomies’, 0 );
function create_my_taxonomies() {
register_taxonomy( ‘artist’, ‘post’, array( ‘hierarchical’ => false, ‘label’ => ‘Artist’, ‘query_var’ => true, ‘rewrite’ => true ) );
register_taxonomy( ‘genre’, ‘post’, array( ‘hierarchical’ => false, ‘label’ => ‘Genre’, ‘query_var’ => true, ‘rewrite’ => true ) );
register_taxonomy( ‘year’, ‘post’, array( ‘hierarchical’ => false, ‘label’ => ‘Year Released’, ‘query_var’ => true, ‘rewrite’ => true ) );
}
[/Code]03 – If I view a Category page (eg. http://www.trancefixxed.co.uk/category/review/ at the bottom there are 1 2 3 etc buttons to navigate to older posts. On the presentation page I have “Show Posts” enabled but these navigation buttons are missing. Any ideas how I add them?
—–
Request previously posted at:
wordpress.org/support/topic/title-bg-colour-bespoke-taxonomies-navigation-buttonsOctober 24th, 2013 at 20:42 #13190ZedCryout Creations mastermindI have (hopefully) answered these questions on the WordPress forums.
If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic. -
AuthorPosts
The topic ‘Title BG Colour / Bespoke Taxonomies / Navigation Buttons’ is closed to new replies.