Forum Replies Created
-
AuthorPosts
-
Would someone be able to assist with this? Thanks.
Twitter Handles: @thecre8tivediva | Website: Cre8tiveDiva.com | LinkedIn Group: http://goo.gl/nNe1m
Why Not Take The Challenge! – Help us answer some of the unanswered postsDo you have the Resources page set as your Static home page? If so, that’s why.
Twitter Handles: @thecre8tivediva | Website: Cre8tiveDiva.com | LinkedIn Group: http://goo.gl/nNe1m
Why Not Take The Challenge! – Help us answer some of the unanswered postsLook for this in your Style.css: change the 100% to about 45%.
.header-full-width #title-area, .header-full-width #title, .header-full-width #title a {
width: 10%;
}
Twitter Handles: @thecre8tivediva | Website: Cre8tiveDiva.com | LinkedIn Group: http://goo.gl/nNe1m
Why Not Take The Challenge! – Help us answer some of the unanswered postsYou could add “pagination” to the posts by adding this code into your posts. So if the content is really long you can split it into pages with page links at the bottom – 1, 2, 3, 4
<!--nextpage-->
Twitter Handles: @thecre8tivediva | Website: Cre8tiveDiva.com | LinkedIn Group: http://goo.gl/nNe1m
Why Not Take The Challenge! – Help us answer some of the unanswered postsFebruary 2, 2013 at 1:44 pm in reply to: How to make 'Home' appear as 'Blog Template' – grid posts? #17403In your home.php file:
/** Add support for Genesis Grid Loop */
function eleven40_grid_loop_helper() { if ( function_exists( 'genesis_grid_loop' ) ) { genesis_grid_loop( array( 'features' => 1, 'feature_image_size' => 0, 'feature_image_class' => 'alignleft post-image', 'feature_content_limit' => 0, 'grid_image_size' => 'grid-thumbnail', 'grid_image_class' => 'alignnone', 'grid_content_limit' => 250, 'more' => __( '[Continue reading]', 'genesis' ), ) ); } else { genesis_standard_loop(); } }You could change the number next to “features” to the number of posts you want on the front. Then remove the three lines beginning with “grid”.
Or, you could change the settings in Settings > Reading – make the Blog page your home page.
Whichever works best for you.
Twitter Handles: @thecre8tivediva | Website: Cre8tiveDiva.com | LinkedIn Group: http://goo.gl/nNe1m
Why Not Take The Challenge! – Help us answer some of the unanswered postsFebruary 2, 2013 at 1:39 pm in reply to: Is there a way to get the sample posts and pages on a test site #17401Yes, you can import the XML of the demo content which is included in the themes zip file. Just go to Tools > Import. Select the WordPress Importer, then browse your desktop to your themes folder and import the XML. Besure to include all of the attachments.
Twitter Handles: @thecre8tivediva | Website: Cre8tiveDiva.com | LinkedIn Group: http://goo.gl/nNe1m
Why Not Take The Challenge! – Help us answer some of the unanswered postsFebruary 2, 2013 at 1:33 pm in reply to: Recommendation ? for the best carousel sliders / galleries etc #17398My recommendation – Sililoquy Plugin – http://soliloquywp.com/features/
Here are the add ons also which includes Instagram and Carousel – http://soliloquywp.com/addons/
Twitter Handles: @thecre8tivediva | Website: Cre8tiveDiva.com | LinkedIn Group: http://goo.gl/nNe1m
Why Not Take The Challenge! – Help us answer some of the unanswered postsIt’s using an image as seen in your code below:
.after-post ul li, .archive-page ul li, .entry-content ul li {
background: url(“images/list.png”) no-repeat scroll left top transparent;
list-style-type: none;
margin: 0 0 5px 20px;
padding: 0 0 0 15px;
word-wrap: break-word;
}You could re-write that to give you “squares” like this:
.after-post ul li, .archive-page ul li, .entry-content ul li {
list-style-type: square;
margin: 0 0 5px 20px;
padding: 0 0 0 15px;
word-wrap: break-word;
}
Twitter Handles: @thecre8tivediva | Website: Cre8tiveDiva.com | LinkedIn Group: http://goo.gl/nNe1m
Why Not Take The Challenge! – Help us answer some of the unanswered postsYes, that’s it.
Twitter Handles: @thecre8tivediva | Website: Cre8tiveDiva.com | LinkedIn Group: http://goo.gl/nNe1m
Why Not Take The Challenge! – Help us answer some of the unanswered postsFebruary 2, 2013 at 8:46 am in reply to: Eleven40 – How to change the default 'featured image' sizes #17345Oh, and to resize the featured images on the Blog page, go to Settings > Media and change the size there where it says “Thumbnail Size.” If they don’t re-size, you may have to use the “Regenerate Thumbnails” plugin – http://wordpress.org/extend/plugins/regenerate-thumbnails/.
Twitter Handles: @thecre8tivediva | Website: Cre8tiveDiva.com | LinkedIn Group: http://goo.gl/nNe1m
Why Not Take The Challenge! – Help us answer some of the unanswered postsFebruary 2, 2013 at 8:39 am in reply to: Eleven40 – How to change the default 'featured image' sizes #17343Look inside your Functions.php file. You should see this:
/** Add support for Genesis Grid Loop */ function eleven40_grid_loop_helper() { if ( function_exists( 'genesis_grid_loop' ) ) { genesis_grid_loop( array( 'features' => 1, 'feature_image_size' => 0, 'feature_image_class' => 'alignleft post-image', 'feature_content_limit' => 0, 'grid_image_size' => 'grid-thumbnail', 'grid_image_class' => 'alignnone', 'grid_content_limit' => 250, 'more' => __( '[Continue reading]', 'genesis' ), ) ); } else { genesis_standard_loop(); } }Add a featrured size where you see zero (0). The grid thumbnail is reading from the code below. Change that as you need it.
** Add new image sizes */
add_image_size( ‘grid-thumbnail’, 270, 100, TRUE );You can copy/paste that line to create more sizes.
Twitter Handles: @thecre8tivediva | Website: Cre8tiveDiva.com | LinkedIn Group: http://goo.gl/nNe1m
Why Not Take The Challenge! – Help us answer some of the unanswered posts@RobG, when you first install one of the SP themes, if you want it to look like the Demo, there is an XML file inside your Theme Zip file that contains the demo contents. Install your theme. Then go to Tools > Import and select WordPress from the list. Install the plugin. Then, it will ask you to upload a file. Locate the XML file inside your Theme file, and import it. It will import all the content so you can set up the site just like the Demo and you can see how everything has been placed. As you build your new site, you can start to delete/eliminate all the dummy XML content. This kinda helps you to learn your new theme. I hope that helps.
Twitter Handles: @thecre8tivediva | Website: Cre8tiveDiva.com | LinkedIn Group: http://goo.gl/nNe1m
Why Not Take The Challenge! – Help us answer some of the unanswered postsNote:
Some people are saying it’s not working for them. All you do is just post this at the end of Functions.php and set the 600 to whatever width you want.if ( ! isset( $content_width ) ) $content_width = 600;
There are some who said that the Jetpack plugin was a conflict and that when they turned it off, then it work. However, I’ve tested this with the most recent version of WP and most recent version of Genesis and it works perfectly for me.
Twitter Handles: @thecre8tivediva | Website: Cre8tiveDiva.com | LinkedIn Group: http://goo.gl/nNe1m
Why Not Take The Challenge! – Help us answer some of the unanswered posts@buddyboy, I added this to the bottom of my functions.php file and it’s working perfectly for me.
if ( ! isset( $content_width ) ) $content_width = 600;
That’s really the only thing you need to do. Change 600 to whatever width your want. Is that what you did?
Twitter Handles: @thecre8tivediva | Website: Cre8tiveDiva.com | LinkedIn Group: http://goo.gl/nNe1m
Why Not Take The Challenge! – Help us answer some of the unanswered postsIt loaded pretty fast for me and I tried it using the Pingdom Tool – http://tools.pingdom.com/fpt/#!/BZuxZWKPZ/Dow2elite.com.
Twitter Handles: @thecre8tivediva | Website: Cre8tiveDiva.com | LinkedIn Group: http://goo.gl/nNe1m
Why Not Take The Challenge! – Help us answer some of the unanswered posts -
AuthorPosts