Forum Replies Created
-
AuthorPosts
-
tornado
ParticipantHi anitac.
To be honest, I have no idea.
My style.css code referencing the Responsive code is:
/* Responsive Design ------------------------------------------------------------ */ @media only screen and (max-width: 1200px) { .wrap { max-width: 960px; } .content-sidebar-wrap { width: 770px; } .content { width: 400px; } .content-sidebar .content, .sidebar-content .content { width: 630px; } .content-sidebar-sidebar .content, .sidebar-sidebar-content .content { width: 440px; } .full-width-content .content { width: 100%; } .genesis-grid-even, .genesis-grid-odd { float: left; margin: 0 0 30px; padding: 0; width: 100%; } .five-sixths, .four-fifths, .four-sixths, .one-fifth, .one-fourth, .one-half, .one-sixth, .one-third, .three-fifths, .three-fourths, .three-sixths, .two-fifths, .two-fourths, .two-sixths, .two-thirds { padding: 0; width: 100%; } .footer-widgets-1 { width: 290px; } .footer-widgets-2 { width: 300px; } .footer-widgets-3 { width: 290px; } } @media only screen and (max-width: 800px) { body { width: 100%; margin: 0 auto; }
I notice this issue doesn't happen on the Eleven40 Pro theme, but I know that's a different kettle of fish.
G
tornado
ParticipantHi anitac.
There seems to be a misunderstanding here: 'I have recently created a site with Eleven40 (converted to HTML5)'.
I want to create another site using Eleven40 and for the style and widget areas to be almost the same as the site I have now.
My question ultimately is: for my new site, do I bother coding the Eleven40 Pro theme to match the look of my current site (which would take me ages as I'm not a developer), or just use Eleven40 (non-Pro version) with the same style sheet and function code? What would be the real benefits of moving to Eleven40 Pro given I can use Eleven40 (non-Pro version) that's been converted to HTML5?
Just after some thoughts. I know there's not a black-and-white answer.
G
tornado
ParticipantThanks, Susan.
Yes, I used:
* Custom Read More link.
*
* @author Greg Rickaby
* @since 1.0.0
*/
function child_read_more_link() {
return 'MORE ?’';
}G
August 17, 2013 at 11:53 am in reply to: How to show Specified Featured Image Only and not Post Images #57058tornado
ParticipantHi francky.
I have had a similar issue with post images displaying as featured images on category blog pages. I used the code here.
but it doens't work on HTML5-converted sites. It also suggests placing in the page_blog.php file which is a bit naughty as Genesis core files should not be touched. Still, it did work before my site was converted.
Like you, I'm still looking for a solution. This topic is firmly on my radar!
G
August 13, 2013 at 1:09 pm in reply to: HTML5 friendly code for removing specific featured images on categories #56135tornado
ParticipantThanks for the reply, Brad. I think this has got me - there's nothing out there that I can find, plus I've been about 10 pages deep on more Google keywords than I can remember.
Cheers anyway.
G
August 12, 2013 at 3:31 pm in reply to: HTML5 friendly code for removing specific featured images on categories #55877tornado
ParticipantHi Brad.
Thanks for your reply. I can't get it to work. I had replaced the old hooks as per your link, but nothing:
add_action( 'genesis_before_entry' , 'wps_no_featured_image' ); add_action( 'genesis_entry_footer' , 'wps_no_featured_image' ); function wps_no_featured_image() { global $post; if (! in_category( array( 20,21,22 ) ) ) return; if ( 'genesis_before_entry' == current_filter() ) remove_action( 'genesis_entry_content', 'genesis_do_post_image' ); elseif ( 'genesis_entry_footer' == current_filter() ) add_action( 'genesis_before_entry_content', 'genesis_do_post_image' ); }
It's frustrating with me not understanding the code, because I don't have any more clues to go at. I've tried different variations also.
August 11, 2013 at 2:14 pm in reply to: Remove featured img on multiple blog page posts that are in a specific category #55677tornado
ParticipantThis reply has been marked as private.July 28, 2013 at 2:20 am in reply to: Remove featured img on multiple blog page posts that are in a specific category #52924tornado
ParticipantBrad, that's awesome. Thank you! Used your code entirely.
I really appreciate it.
G
tornado
ParticipantThis reply has been marked as private.tornado
ParticipantThat's great! Thanks, Brad. I really appreciate your reply.
-
AuthorPosts