KconleyK
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Easy Inline adds all over siteYea it seems to be an issue with Chrome only for me. Thanks.
Forum: Fixing WordPress
In reply to: Top Menu and a few other things dont' work properly in IEI was afraid of this answer, but I appreciate the response. It looks like a plugin for a top bar for advertisement was triggering the menu issue. I got that part fixed which was the biggest issue for me.
Now on to the footer, and an issue with firefox not displaying a Content Slider that works on other browsers. So frustrating why they all work differently.
Forum: Fixing WordPress
In reply to: Drop Down Menu – by ShailanI know I marked this as resolved but if you are around or check this, you were such a big help. Do you know how to make the third tier drop down go to the side again?
Right now the top nav bar goes horizontal, then the drop down goes vertical but if their is a third tier drop down it goes vertical again, anyway to make that go out to the side and then down? So it doesn’t overlap the entries below it?
https://www.AverageGuyGolf.com
https://www.fosterthomas.com has examples of how the third tier goes to the right then down.
Forum: Fixing WordPress
In reply to: Footer not all the way at bottom in IESo add the top code to my footer.php file and the bottom to my style.css file?
Sorry if I sound like an idiot.
Forum: Fixing WordPress
In reply to: Amount of Posts per pageNo Problem thanks for trying
Forum: Fixing WordPress
In reply to: Amount of Posts per page`<?php get_header(); ?>
<div id=”container”>
<?php if (is_category(‘Golf Course Reviews’)) : ?>
<?php elseif (is_category(‘Category B’)) : ?>
<p></p>
<?php else : ?>
<p></p>
<?php endif; ?>
<?php if(have_posts()): ?>
<?php $adcount = 1; ?>
<?php while(have_posts()):the_post(); ?>
<div class=”post”>
<h2><a href=”<?php the_permalink(); ?>” title=”<?php the_title(); ?>”>
<?php the_title(); ?>
</a></h2>
<div class=”entry”>
<?php if ($count == 1) : ?>
<?php endif; $count++; ?>
<?php if( is_category( ‘golf-wars’ ) ) the_content();
else the_excerpt();?>
<p class=”postmetadata”>
<?php if(function_exists(‘wp_gdsr_render_article’)){ wp_gdsr_render_article(); } ?>
<?php _e(‘Tags:’); ?>
<?php the_category(‘, ‘) ?>
<?php _e(‘by’); ?>
<?php the_author(); ?>
<br />
<?php comments_popup_link(‘No Comments »’, ‘1 Comment »’, ‘% Comments »’); ?>
<?php edit_post_link(‘Edit’, ‘ | ‘, ”); ?>
</p>
<?php if ($adcount == 3) : ?>
<?php
$args = array(
‘numberposts’ => 50,
);$posts_array = get_posts( $args );
?>
<center><script type=”text/javascript”><!–
google_ad_client = “ca-pub-7545639328816787”;
/* Category Ads */
google_ad_slot = “9432147552”;
google_ad_width = 468;
google_ad_height = 60;
//–>
</script>
<script type=”text/javascript”
src=”https://pagead2.googlesyndication.com/pagead/show_ads.js”>
</script></center><?php endif; $adcount++; ?>
</div>
</div>
<?php $adcount++; ?>
<?php endwhile; ?>
<div class=”postnav”>
<?php posts_nav_link(); ?>
</div>
<?php else: ?>
<div class=”post” id=”post-<?php the_ID(); ?>”>
<h2>
<?php _e(‘Not Found’); ?>
</h2>
</div>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
</div>
<?php get_footer() ?>
</body></html>Forum: Fixing WordPress
In reply to: Amount of Posts per pageThat is a lot of code, what is the website I go to for that?
Forum: Fixing WordPress
In reply to: Amount of Posts per pageDidn’t work I put the below in my page.php file and archive.php didn’t work with either
<?php
$args = array(
‘numberposts’ => 50,
);$posts_array = get_posts( $args );
?>Forum: Fixing WordPress
In reply to: Amount of Posts per pageWow you are just helping me all day today. Put this in my archive.php file correct?
Forum: Fixing WordPress
In reply to: Drop Down Menu – by ShailanBefore I start two new posts you seem very knowledgeable and if you have any ideas on these two issues it would be a great help. If not I’ll start new posts and see if anyone does. Again thanks for all your help.
1) The slider plugin does not appear on Firefox for some reason, on IE, Chrome and Safari it is there and in the correct spot and spaced correctly but on Firefox it just isn’t there at all.
2) Is there any easy way, I don’t want a generic plugin look, to have my site resize for mobile and tablet devices? I want it to look exactly the same as the real site just auto resize text, pictures, and everything to make it look and feel like real site but be formatted correctly for mobile and tablets.
Forum: Fixing WordPress
In reply to: Drop Down Menu – by ShailanI am using Chrome and IE and it was disappearing with both browsers, but I moved the navigation bar to the top of the header instead of right above the slider plugin and it seems to be working flawlessly. I always think the menu looks a little better up there so I am happy with that change.
Forum: Fixing WordPress
In reply to: Drop Down Menu – by ShailanNevermind I move the nav bar to the top of the header so it isn’t right on top of the slider and it is working perfectly.
I can’t thank you enough for your help
Forum: Fixing WordPress
In reply to: Drop Down Menu – by ShailanYou are great, thanks man.
One last question and I am not sure there is a fix for it, might be the slider plugin messes with drop down but I can only go about half way down the drop downs and the drop down disappears before I can get to the bottom selections. Is this because of the slider plugin? Anyway to make the drop down stay up no matter what?
Forum: Fixing WordPress
In reply to: Drop Down Menu – by ShailanLooks the padding one worked but the width one didn’t, what did I do wrong there?
ul.sub-menu{
display: block;
width: 160px; !important;
}ul.sub-menu a{
display: block;
padding: 5px;
}Forum: Fixing WordPress
In reply to: Drop Down Menu – by Shailanat bottom of style.css correct?