How to move the Comment Box from the bottom of the comments to the Top?.
Some people prefer the comment box at the bottom, and that is the default position for WordPress.
However, I have found that many people ask … Read the rest
Some people prefer the comment box at the bottom, and that is the default position for WordPress.
However, I have found that many people ask … Read the rest
Many website owners prefer not to show the URL option in the comments section of their website.
The main reason is to try to stop spam, as many … Read the rest
There is a section in each post on the new version 2.x of the Graphene theme, that shows the name of the poster, and, when the mouse is shown … Read the rest
There is a section in each post on the new version 2.x of the Graphene theme, that shows the name of the poster, and, when the mouse is shown … Read the rest
Some WordPress sites, when a search result is nothing, will ask if you: Wanna try an alternative keyword search?
I know that word grates on some people, as it uses the common … Read the rest
Some WordPress sites, when a search result is nothing, will ask if you: Wanna try an alternative keyword search?
I know that word grates on some people, as it uses the common … Read the rest
To add the Graphene slider into every page and post within the Graphene theme, the following code is placed into a functions.php file in the child theme.
<?php
function graphene_display_slider(){
graphene_slider();
add_action(‘wp_footer’, ‘graphene_scrollable’);
}
function custom_enqueue_scripts(){
if ( ! … Read the rest
To add an extra widget area at the top right of the header are of the WordPress Twenty Twelve Theme, follow these steps.
Add this to a functions.php file in the child theme
//add a widget area in the header… Read the rest
Change font sizes in navigation bar.
Make the following changes to the light4.css or appropriate file
Change this line:
#nav li a {display:block;padding:0 10px;line-height:30px;color:#fff;font-weight:bold;}
to this:
#nav li a {display:block;padding:0 10px;line-height:30px;color:#fff;font-size:75%;font-weight:bold;}
and this line:
#nav li a:hover, #nav li:hover a,
… Read the rest
A few tips and reminders for using the Atahualpa theme with Worpress.
This is mainly for my own reference, as I tend to do things but then forget how I have done it when I need to change or redo … Read the rest