Forum Replies Created
-
AuthorPosts
-
rasor
ParticipantTry this plugin. Nav Menu Images. It's a little old. But still works.
rasor @ WPBasics.org | Buy me a coffee
rasor
ParticipantOnce I click on "New Comments" I get the screen below
I see two buttons. Older Comments and Newer Comments.
Please clarify what you are expecting to see.
rasor @ WPBasics.org | Buy me a coffee
rasor
Participantimg { padding-bottom: 20px; }
try this instead. add it to the bottom of style.css
rasor @ WPBasics.org | Buy me a coffee
rasor
Participanttry `img.attachment-post-image.wp-post-image {
padding-bottom: 20px;
} `
rasor @ WPBasics.org | Buy me a coffee
rasor
Participantyou can put it in styles.css or you can use a custom css plugin.
rasor @ WPBasics.org | Buy me a coffee
rasor
Participantinput.search-field { margin-bottom: 15px; }
this should do the trick
rasor @ WPBasics.org | Buy me a coffee
rasor
Participantrasor
Participantrasor
Participantrasor
Participanthere is the code. not sure why the weird characters got added.
//* Logo to Primary Nav add_filter( 'genesis_nav_items', 'ja_logo_to_primary', 10, 2 ); add_filter( 'wp_nav_menu_items', 'ja_logo_to_primary', 10, 2 ); /** * based on Bill Erickson code http://www.billerickson.net/genesis-wordpress-nav-menu-content/ */ function ja_logo_to_primary($menu, $args) { $args = (array)$args; if ( 'primary' !== $args['theme_location'] ) return $menu; $ja_logo = '<li id="ja_logo">Follow: <a href="http://localhost/wpbasics/"><img src="http://localhost/wpbasics/wp-content/uploads/2015/09/WPbasics_header.png" /></li>'; return $ja_logo . $menu; }
rasor @ WPBasics.org | Buy me a coffee
rasor
ParticipantExtra code added as I am on mobile. Will correct as soon as I get home
rasor @ WPBasics.org | Buy me a coffee
rasor
Participanttry adding this to the function.php
//* Logo to Primary Nav add_filter( 'genesis_nav_items', 'ja_logo_to_primary', 10, 2 ); add_filter( 'wp_nav_menu_items', 'ja_logo_to_primary', 10, 2 ); /** * based on Bill Erickson code http://www.billerickson.net/genesis-wordpress-nav-menu-content/ */ function ja_logo_to_primary($menu, $args) { $args = (array)$args; if ( 'primary' !== $args['theme_location'] ) return $menu; $ja_logo = '<li id="ja_logo">Follow: <a href="http://localhost/wpbasics/"><img src="http://localhost/wpbasics/wp-content/uploads/2015/09/WPbasics_header.png" /></li>'; return $ja_logo . $menu; }
and this to the styles.css
#ja_logo { float: left; width: 15%; margin-top: -12px; } #ja_logo a { padding: 0; }
It may not be the best way but it should get the job done. replace the href with your home url and the img src with the location of your logo.
hope it helps
rasor @ WPBasics.org | Buy me a coffee
rasor
ParticipantJust install the new theme and follow the theme setup instructions that are provided with studiopress themes. It will automatically access the database. No need to mess with the database.
rasor @ WPBasics.org | Buy me a coffee
rasor
ParticipantPosts are saved in a database. You can switch themes without losing the posts
rasor @ WPBasics.org | Buy me a coffee
rasor
ParticipantI had this problem once. I was using Cloudflare. Had to clear Cloudflare cache. Are you using Cloudflare?
rasor @ WPBasics.org | Buy me a coffee
-
AuthorPosts