Shaunrafuse
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Add header widget areaThat worked awesome! Thank you so much, been meaning to fill that spot for some time now lol, really appreciate it!
Forum: Fixing WordPress
In reply to: Add header widget areaThanks PVWD, E&G..
I’ve taken a look through that widgetiziting document before for other information, great post.. I just thought there has to be an easier way though…
I’ve chosen to simply implement the div that E&G suggested with a javascript/text code, but if you take a look: https://homehealthyfitness.com , it hasn’t worked out exactly according to plan…
I’m trying to make it adjacent to my header image and it also moved my search button!
I tried placing it in various spots in the header.php but with no desirable outcome…
Forum: Fixing WordPress
In reply to: Post limitations aren't workingFixed that up, thanks Chris.. I had it right before the opening body tag :S…
Forum: Fixing WordPress
In reply to: Post limitations aren't workingThanks Chris..
I believe it’s been a plugin issue.. Jet-pack seems to be the problem at the moment… As for the Google+ call, I was told to throw my +tag in the header.php so that’s why it’s there but it definitely doesn’t seem to be the right place…
Forum: Fixing WordPress
In reply to: Post limitations aren't workingCan anyone provide some insight, I’ve come across others with the same issue so i’m wondering if it is a theme issue?
Forum: Fixing WordPress
In reply to: How can you create a widget in the header area??It is within this I believe
<?php /** * The main template file * * This is the most generic template file in a WordPress theme and one * of the two required files for a theme (the other being style.css). * It is used to display a page when nothing more specific matches a query, * e.g., it puts together the home page when no home.php file exists. * * @link https://codex.www.ads-software.com/Template_Hierarchy * * @package WordPress * @subpackage Twenty_Fourteen * @since Twenty Fourteen 1.0 */ get_header(); ?> <div id="main-content" class="main-content"> <?php if ( is_front_page() && twentyfourteen_has_featured_posts() ) { // Include the featured content template. get_template_part( 'featured-content' ); } ?> <div id="primary" class="content-area"> <div id="content" class="site-content" role="main"> <?php if ( have_posts() ) : // Start the Loop. while ( have_posts() ) : the_post(); /* * Include the post format-specific template for the content. If you want to * use this in a child theme, then include a file called called content-___.php * (where ___ is the post format) and that will be used instead. */ get_template_part( 'content', get_post_format() ); endwhile; // Previous/next post navigation. twentyfourteen_paging_nav(); else : // If no content, include the "No posts found" template. get_template_part( 'content', 'none' ); endif; ?> </div><!-- #content --> </div><!-- #primary --> <?php get_sidebar( 'content' ); ?> </div><!-- #main-content --> <?php get_sidebar(); get_footer();
And I’m trying to use
<?php query_posts('showposts=3'); ?>
Before the loop but it’s not working.. I guess you have to remove the loop?? I’ve tried fiddling but with no luck at all…Forum: Fixing WordPress
In reply to: How can you create a widget in the header area??I know there’s an easy(for a CSS/PHP/HTML wiz) solution for this I just can’t figure it out…
Forum: Fixing WordPress
In reply to: How can you create a widget in the header area??There’s ample room I just need to know how to put it there, does any anyone have an input?
Forum: Fixing WordPress
In reply to: How do you adjust position of widget??The call to the left sidebar is in the functions.php?? (if so, then I should be able to just copy that call and add it before the content div right??)
Forum: Fixing WordPress
In reply to: How do you adjust position of widget??Really?? When I look at this post, for example, https://homehealthyfitness.com/weekend-family-getaways-wonderland
I see a lot of real estate to the left side of the content area, as well as the right between the content area and the primary sidebar.
My content in the content sidebar seems to disappear when I navigate of the home page as well, but that’s for another topic…
Forum: Themes and Templates
In reply to: [Twenty Fourteen] Can Twenty Fourteen Support a Graphic Logo?Ya I’ve been battling with it, but it sure does give me a chance to learn a few things..
Forum: Fixing WordPress
In reply to: How do you adjust position of widget??On I.E… Look to the left side at the bottom of the page.. It’s a widget we created ‘left-sidebar’. But I can’t tell it where to be! It just stays at the bottom.. I was hoping to fill some space with it, as well create another one and move it to fill the space up top near my header…
Forum: Fixing WordPress
In reply to: How do you adjust position of widget??Hi esmi! I’m using a child of the twenty fourteen theme.
Forum: Themes and Templates
In reply to: [Twenty Fourteen] Can Twenty Fourteen Support a Graphic Logo?Worked like a charm!! Thank you esmi! Now I’ve got to figure a way to fill that space to the right lol.. Thank you so much!
Forum: Themes and Templates
In reply to: [Twenty Fourteen] Can Twenty Fourteen Support a Graphic Logo?Ok done but still nothing! On the site its the same, huge! But within the Appearance>Header Preview, it looks the correct size!