Forum Replies Created

Viewing 15 replies - 1 through 15 (of 15 total)
  • Thread Starter Philip

    (@prose976)

    The plugin itself works for mobile, but the css to reduce the padding seems to be stripped out and I get the padding in mobile. CSS works fine on desktop and some tablets.

    Page where you can see CSS at work in desktop vs mobile is here: https://tribyoot.org/12864/dodge-charger-near-death-experience-connecticut-new-york/

    Philip

    Thread Starter Philip

    (@prose976)

    Another question. The css you gave me above works on desktops, but is there specific css so that this will also work on mobile devices?

    Philip

    Thread Starter Philip

    (@prose976)

    Beautiful. Just upgraded to Pro Version and left a 5-star comment for your plugin. Thanks for the support.

    Have an Awesome Day!

    Philip

    Thread Starter Philip

    (@prose976)

    Tribyoot.org. Scroll down and you’ll see an ad on the right side. It “sticks” as it should, slides down with the scroll, but then pops out to the right at a certain point…then pops back in.

    Maybe you can use firebug to check out any css conflicts?

    Thanks.

    Philip

    Thread Starter Philip

    (@prose976)

    I just resolved this. Thanks.

    Have an Awesome Day!

    Philip

    Thread Starter Philip

    (@prose976)

    Great. Thanks.

    Thread Starter Philip

    (@prose976)

    Thanks Hector. My problem is actually applying the code at: https://codeitdown.com/ordered-list-css-styles/
    to the css style sheet. I have applied various styles to WPP already as you can see: https://www.tribyoot.org (sidebar). But the actual method to apply these new styles escapes me. I’m sure it is obvious to most people, but placement of the code in the stylesheet or in the html markup area is not working for me. I need a lesson in css (probably many lessons), because the concept of divs, styles, html and mixing them altogether is very confusing to me.

    Philip

    Thread Starter Philip

    (@prose976)

    Thanks for the quick reply Hector.

    I’m quite a novice in regards to css. How do I use the code on the page I mentioned after I’ve made those changes? I’ve made the changes and saved the widget, but when I paste that code into the html box of wpp widget, the result is just a bunch of text on the web page.

    Any guidance will be greatly appreciated.

    Philip

    Fantastic. Going to Facebook right now to like Rio. Looking forward to your updates and new features!

    Also, would like to do an article on your company. The gallery is just what we needed and we appreciate all the time and effort you are putting into it.

    Philip

    BTW, this is a subsite of the WP multisite. Philip

    Would love to test it out, but maybe you can help me get the current version working on my site first. Here is the code for my theme’s index file: Which part of the code do I need to replace? Thanks in advance.

    <?php get_header(); ?>
    <div id="content">
    
    	<?php if (is_paged() && get_query_var('paged') > 0) {  ?>
    		<div id="breadcrumbs">
    			<a>"><?php _e('Home','themejunkie') ?></a><?php printf( __( ' Page %s', 'theme junkie' ), $paged );  ?>
    		</div><!-- #breadcrumbs -->
    	<?php } ?>
    
        <?php if(!is_paged() && (get_option('resizable_featured_content_enable') == 'on')) { ?>
    
        <div id="featured-content">
            <div class="heading">
                <span class="heading-text"><?php _e('Featured News','themejunkie'); ?></span>
            </div> <!-- .heading -->
            <div class="featured-main">
    
    <ul>
                    <?php
                    $counter = 1;
                    query_posts( array(
                  'showposts' => 1,
                        'tag' => get_option('resizable_featured_post_tags'),
                    ) );
                    if( have_posts() ) : while( have_posts() ) : the_post();
                        ?>
                        <li class="featured-<?php echo $counter; ?>"><a>" rel="bookmark"><?php the_post_thumbnail('featured-thumb-large', array('class' => 'entry-thumb')); ?></a><span class="entry-date"><?php the_time('F j, Y'); ?> · <?php comments_popup_link( __( '0 Comment', 'themejunkie' ), __( '1 Comment', 'themejunkie' ), __( '% Comments', 'themejunkie' ) ); ?></span><h2 class="entry-title"><a>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
                        <?php $counter++; endwhile; endif; wp_reset_query(); ?>
                </ul>
            </div><!-- .featured-main -->
            <div class="clear"></div>
        </div><!-- #featued-content -->
        <?php } ?>
    
        <div class="clear"></div>
    
        <?php if(!is_paged() && (get_option('resizable_news_ticker_enable') == 'on')) { ?>
    	    <div id="news-ticker">
    	        <span><?php _e('Breaking News:','themejunkie'); ?></span>
    	        <ul class="news">
    	            <?php
    	            query_posts( array(
    	                'tag' => get_option('resizable_news_ticker_tags'),
    	                'showposts' => get_option('resizable_news_ticker_num')
    	            ));
    	            if( have_posts() ) : while( have_posts() ) : the_post();
    	                ?>
    	                <li class="news-ticker">
    	                    <a>" title="<?php printf( esc_attr__( 'Permalink to %s', 'themejunkie' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a>
    
    	                <?php endwhile; endif; wp_reset_query(); ?>
    
    			<span class="headline-nav">
    				<a href="#previous"></a>
    				<a href="#next"></a>
    			</span>
    	        <div class="clear"></div>
    	    </div><!-- #news-ticker -->
        <?php } ?>
    
    	<?php if (get_option('resizable_left_sidebar_enable') == 'on') { ?>
    	    <div id="left-sidebar">
    	        <?php if ( !function_exists( 'dynamic_sidebar' ) || !dynamic_sidebar('left-sidebar') ) :?>
    	        <?php endif; ?>
    	    </div><!-- #left-sidebar -->
        <?php } ?>
    
        <div id="content-loop">
            <?php if (have_posts()) : while ( have_posts() ) : the_post() ?>
            	<?php get_template_part('includes/loop'); ?>
            <?php endwhile; wp_reset_postdata(); wp_reset_query(); ?>
            <div class="clear"></div>
            <?php if (function_exists('wp_pagenavi')) wp_pagenavi(); else { ?>
                <div class="pagination">
                    <div class="left"><?php previous_posts_link(__('Newer Entries', 'themejunkie')) ?></div>
                    <div class="right"><?php next_posts_link(__('Older Entries', 'themejunkie')) ?></div>
                    <div class="clear"></div>
                </div><!-- .pagination -->
                <?php } ?>
            <?php else : ?>
            <?php endif; ?>
        </div><!-- #content-loop -->
    
        <div class="clear"></div>
    
    </div><!-- #content -->
    
    <?php get_sidebar(); ?>
    <?php get_footer(); ?>

    [Please post code or markup between backticks or use the code button. Or better still – use a pastebin. Your posted code has now been permanently damaged/corrupted by the forum’s parser.]

    Thread Starter Philip

    (@prose976)

    Forbidden

    You don’t have permission to access /Tribyoot/ on this server.

    Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.

    Make sure you create an actual .ico (not a png, jpg, etc.) Go here to do it for free https://www.favicon.cc Then in your theme’s header.php file, add the line of code that ends with /favicon.ico” /> and also the line of code directly below the <head> tag that ends with favicon.ico.

    Also, make sure your favicon is ftp’d to all your root folder, and to each of the folders in succession to your theme’s folder and its image folder.

    <link rel=”stylesheet” type=”text/css” href=”<?php echo get_template_directory_uri(); ?>/custom.css” />
    <link rel=”shortcut icon” href=”<?php echo get_stylesheet_directory_uri(); ?>/favicon.ico” />
    <?php wp_head(); ?>
    <?php if (get_option(‘resizable_left_sidebar_enable’) == ‘false’) { ?>
    <style>
    #content-loop { width: 100%; }
    </style>
    <?php } ?>
    </head>
    <link rel=”shortcut icon” href=”<?php echo get_stylesheet_directory_uri(); ?>/favicon.ico” />

    Hope that helps.

    Just a quick note about my post – apparently others are having a problem using an image slider plugin with your show support ribbon as well, so the problem may have something to do with the “slide” portion of your code for the show support ribbon. Just a shot in the dark.

    Hello. I really like the show support ribbon, but have discovered it conflicts with jetpack for the “email share” button. I have updated my system to the latest jquery and discovered that when I disable the show support ribbon my “email share” button in jetpack works fine. I have attempted to edit the plugin and update the 1.6.4 jquery with 1.9.1, but that does not have an effect. What can I do to the code for the plugin so that I can continue using it alongside jetpack sharing. Thanks. P.S. It does not affect the social sharing, and I have resolved the issue with the “more” button, so “email share” is the only conflict that I currently identify. Thanks for the great plugin. Hopefully you have a solution so I don’t have to disable it on my site. Philip

Viewing 15 replies - 1 through 15 (of 15 total)