funkycamel
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [twenty twelve] viewport content widthHi Andrew
I can’t tell on the theme demo page. Basically I had a background image that played a big part in the design and that’s how I could tell it wasn’t rendering to the correct size.
I’ve since modified the header viewport code to :
<meta name=”viewport” content=”width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1″>
and this sorts it. I’ve built 4 or 5 child themes from the twentytwelve theme but never noticed this. Probably due to the backgrounds i’ve been using and having no basis for size
Forum: Themes and Templates
In reply to: [Twenty Twelve] What happened to my theme?you’ve applied a css style of position:absolute to .slider_wrapper_en. Remove this or change it to relative and it sorts the layout of your site
Forum: Networking WordPress
In reply to: Is multisite right for me?Hi MIke,
thanks for answering. I had a quick play around with that plugin and it seems to do everything I need. I guess multisite is the way forward
Forum: Plugins
In reply to: [YouTube SimpleGallery] Thumbnail images not showingThank you for potential saving me a lot of time!
Forum: Themes and Templates
In reply to: get_children issuesI’ve used a work around!
Forum: Fixing WordPress
In reply to: pagination custom post typethis is my custom query
$args = array( ‘post_type’ => ‘listings’, ‘posts_per_page’ => 5, ‘beds’ => $bedQuery, ‘paged’=> $paged, ‘post_status’=> ‘publish’ );
$loop = new WP_Query( $args );
while ( $loop->have_posts() ) : $loop->the_post();I’m using a custom template page called template-listings if thats what you meant?