Using your examples and some from another developer, I added a home-stamp (sidebar) to a masonry home page in genesis. I need for it not to show up on any mobile device calls. I’m at my wits end on this one, nothing I have tried satisfactorily takes it out of mobile. The client loves the […]
Search Results for: genesis
Reply To: Responsive divs in footer widgets
I shall inspect your site tomorrow. In the meantime, if you haven’t already, go through http://sridharkatakam.com/css-multi-column-footer-widgets-genesis/
Adding the word ‘Menu’ next to the Hamburger icon in Altitude Pro
In the members-only forum, a user asked: I’m using altitude pro, but I suspect this would apply to other themes as well. I’ve looked online and through the tutorials and understand how to replace the dashicon. However, adding the word Menu next to the dashicon is not working well in my tests …I’m trying to […]
Reply To: Tutorial Requests
Hi Sridhar, I would like to know how to use this Tutorial: “Previous and Next Post Navigation within the same Category in Genesis” http://sridharkatakam.com/previous-next-post-navigation-within-category-genesis/ on other post types, like Books in the new Author Pro theme. I have tried to change the function from ‘post’ if ( !is_singular(‘post’) ) to ‘book’ or ‘books’? still under […]
Reply To: Tutorial Requests
Would be great to see a tutorial on how to add and style different front page layout using widgets, applicable to any Genesis theme Few examples: – Slider – Full width (parallax) images with text overlay. – Featured post (3 or 4 rows) with featured images as background and title on hover – Horizontal opt-in […]
Navigation Widget Area Not Aligning with Navigation
I added a widget area to the navigation using this code in functions.php add_filter( 'genesis_nav_items', 'sws_social_icons', 10, 2 ); add_filter( 'wp_nav_menu_items', 'sws_social_icons', 10, 2 ); function sws_social_icons($menu, $args) { $args = (array)$args; if ( 'secondary' !== $args['theme_location'] ) return $menu; ob_start(); genesis_widget_area('nav-social-menu'); $social = ob_get_clean(); return $menu . $social; } and this code in style […]
Reply To: Tutorial Requests
It would be terrific to have a tutorial on how to update the navigation for your One-Pager Genesis theme (http://sridharkatakam.com/announcing-one-pager-one-page-parallax-website-child-theme-genesis ) to the responsive navigation of your new Genesis Starter {http://sridharkatakam.com/genesis-starter-child-theme). The responsive menu in Starter is superb!
Reply To: How can I make the following header image responsive for mobile devices.
@Joe Personally I use the inline method for adding logo or header images in Genesis. See http://sridharkatakam.com/use-wide-header-magazine-pro/.
Portfolio Grid in Dynamik with Title and Excerpt on Hover
This is a step-by-step tutorial detailing the implementation of my Portfolio in Genesis with Featured Images in a Grid revealing Title and Excerpt on Hover article in Dynamik. Step 1 Install and activate Portfolio Post Type plugin. Add Portfolio Items and attach Featured images. In the demo site I have used images that are 800 […]
Reply To: Tutorial Requests
Hey Sridhar, I try to minimize the use of plugins for sitespeed. Now I found a code to use a ‘Single job sidebar’: // Register new sidebar genesis_register_sidebar( array( ‘id’ => ‘job-single-sidebar’, ‘name’ => ‘Single Job Sidebar’, ‘description’ => ‘This is the sidebar for single job pages.’, ) ); add_action(‘get_header’,’cd_change_genesis_sidebar’); function cd_change_genesis_sidebar() { if ( […]
Recent Comments