nzguyyy
Forum Replies Created
-
Forum: Plugins
In reply to: [Easy Modal] Old Modals Not Opening After Buying Premium VersionI have updated WordPress as well as installed the jQuerey Updater plug-in but am getting the same error.
Forum: Plugins
In reply to: [Easy Modal] Old Modals Not Opening After Buying Premium VersionHi Danieliser
Thanks for the help. Excuse my naivety, but I have no idea how to update or delete my jquery ui.
Please can you help?
Forum: Fixing WordPress
In reply to: Anything Popup PositioningSorry. I added this:
#AnythingPopup_BoxContainer1 { display: block !important; top: 10% !important; left: 50% !important; margin-left: -250px !important; position: fixed !important; }
and then replaced the shortcode on the post in question with this:
<a href='javascript:AnythingPopup_OpenForm("AnythingPopup_BoxContainer1","AnythingPopup_BoxContainerBody1","AnythingPopup_BoxContainerFooter1","500","700");'><img src="https://www.planitnz.com/wp-content/uploads/2014/01/Book-Now1.png" class="mk" align="right"></a>
Forum: Fixing WordPress
In reply to: Anything Popup PositioningThanks again. Have tried and now the button doesn’t respond.
Forum: Fixing WordPress
In reply to: Anything Popup PositioningSo are you suggesting I should use the following?
#AnythingPopup_BoxContainer1 element.style {
display: block;
top: 99.5px;
left: 50%;}
Forum: Fixing WordPress
In reply to: Anything Popup PositioningHave removed that code below, but still not showing correctly. https://i.imgur.com/bftLi13.jpg
#AnythingPopup_BoxContainer1 element.style { display: block; top: 10% !important; left: 37% !important; }
Forum: Fixing WordPress
In reply to: Anything Popup PositioningHave tried on safari, firefox and Chrome. Here is a screenshot of what happens on Firefox:
Forum: Fixing WordPress
In reply to: Anything Popup PositioningThanks. I’ve just tried that with no luck.
This code doesn’t display when I inspect element for some reason:
#AnythingPopup_BoxContainer1 element.style {
display: block;
top: 10% !important;
left: 37% !important;}
Forum: Fixing WordPress
In reply to: Adding new thumbnail sizeHi Bassilner
In the functions.php file this needs to be added:
f ( function_exists( 'add_theme_support' ) ) { add_theme_support( 'post-thumbnails' ); add_image_size( 'whatever-you-want-to-name-it', 300, 9999 ); }
This creates a new thumbnail size each time you add a featured image. In this particular instance, it is 300 pixels wide with no limit on its height.
Then, on my category page I added the following:
<?php if(has_post_thumbnail()) : ?> <div class="image-wrap"> <a href="<?php the_permalink();?>" title="<?php the_title();?>"> <?php the_post_thumbnail( 'whatever-you-want-to-name-it' ); ?> </a> </div> <?php endif; ?>
Forum: Fixing WordPress
In reply to: Problem with popup on certain pagesHi Cyril
Thanks- do you have any suggestions for a better plugin? I need a contact form that pops up upon clicking for booking those tours.
Forum: Fixing WordPress
In reply to: Paragraph spacing different after update to Google fontsthanks heaps. not sure when i lost that styling. fixed now ??
Forum: Fixing WordPress
In reply to: [&hellip showing at the end of post excerptHmm, thanks for the replies .. not sure what I can do to fix that. What do you mean by intact?
Forum: Fixing WordPress
In reply to: Change width of post-content divI have done it a different way, ended up doing:
`.category-15 .post-wrap {clear: none;}
.category-15 .post-wrap.in-archive {width: 440px; background-size:300px; float:left; }’Thanks though for your assistance.
Forum: Fixing WordPress
In reply to: Change width of post-content divDoes <div class=”left_cont”> automatically only add three posts?
Do I put this within the div?
<?php if(have_posts()):?> <?php while(have_posts()): the_post();?> <div class="post-wrap in-archive" > <div class="post-title in-archive"><a href="<?php the_permalink();?>" title="<?php the_title();?>"> <?php the_title();?></a></div> <?php if(has_post_thumbnail()) : ?> <div class="image-wrap"> <a href="<?php the_permalink();?>" title="<?php the_title();?>"> <?php the_post_thumbnail( 'nz-tour-thumb' ); ?> </a> </div> <?php endif; ?> <div class="post-content post-excerpt <?php echo (has_post_thumbnail()) ? 'withImage' : '' ?>"> <?php the_excerpt();?> </div> <a class="readmore-small" href="<?php the_permalink()?>">read more</a> </div>
Forum: Fixing WordPress
In reply to: Adding new thumbnail sizeFixed