Forum Replies Created

Viewing 15 replies - 31 through 45 (of 131 total)
  • Ok, at this point I could use as much debugging info as possible to try and hone in on the issue:

    • You say you’re getting an “error page” and “the page I was looking for is not found.” Can you please specify if you’re getting a Firefox error screen? or a WordPress error screen? Does it have a status number, e.g. 404, 500, other?
    • Please provide the Mac OS X version you’re running.
    • Please provide the Firefox version you’re running.
    • Do you have any special Firefox extensions installed that may be causing redirects, or conflicts that may result in this behavior?
    • Perhaps, try Safari and Chrome if you have them installed. List the version numbers, and what behavior you’re experiencing in either (assuming they’re working fine, based on your initial comment, but good to be thorough).

    I’m not certain what could be happening at this point, and the info above could help narrow where we go next. Thanks!

    Will need to know which theme you’re using. It sounds like the theme is setting a specific height and/or width on the logo via CSS, and will need to know the specific theme to verify and provide actionable steps to fix please.

    Sorry about that saptintern as I neglected to note the extent of your issue the first pass through.

    So I visited homepage in Firefox 45.0.2 and clicked “TBX Dialects” in the main navigation, and the page seemed to load fine for me. Here is a screenshot: https://www.dropbox.com/s/hmwanfibe2b6seh/Screenshot%202016-04-19%2008.59.26.png?dl=0

    Also, I tried all the links in the main navigation and all loaded fine for me.

    If your question has been answered, we would love if you would mark this topic as resolved in the right hand sidebar. This helps our volunteers find the topics that still need attention and more people will get helped, possibly like you did.

    Hi cdsmiler81,
    You would have to add a little Custom CSS to override this. I would recommend using a plugin, like:

    Once you have a Custom CSS plugin installed you should be able to use the following CSS to remove the border:

    #masthead .photo-section span {
        border-radius: 0;
    }
    
    #masthead .photo-section span img {
        border: none;
        border-radius: 0;
    }

    That should do it.

    If your question has been answered, we would love if you would mark this topic as resolved in the right hand sidebar. This helps our volunteers find the topics that still need attention and more people will get helped, possibly like you did.

    Hi Katie D.!

    It looks like the “Home>>About” (aka Breadcrumbs) are being output by the Yoast SEO Plugin. You should be able to disable the setting by going to SEO > Advanced and turning off the Breadcrumb setting on your site’s Dashboard.

    If your question has been answered, we would love if you would mark this topic as resolved in the right hand sidebar. This helps our volunteers find the topics that still need attention and more people will get helped, possibly like you did. Thanks!

    Hi sapintern,
    I just tested on my Mac running El Captian 10.11.4 operating system and Firefox 45.0.2, which I believe are both the latest, stable versions and the site loads and appears fine. Here is a screenshot: https://www.dropbox.com/s/7tl31lq044sngwt/Screenshot%202016-04-18%2010.10.16.png?dl=0

    I suspect there may be an issue with the way your system is configured in respect to Firefox that is causing it to fail, and would require additional information please. Can you please provide the following to help further triage:

    • Version of Mac OS X you’re running – click Apple Icon in top left, and choose “About This Mac” and it should tell you.
    • Also, the version of Firefox you’re running please. With FF open choose Firefox > About Firefox, and it should tell you.

    Let us know, and thanks.

    Hi Eric,
    How are you changing the logo in your header? Are you directly editing the theme’s template files? Using a plugin? Using the Customizer (screenshot of Customizer)?

    I believe that the issue may lie with the theme’s CSS. Therefore, I would recommend asking in the specific theme’s support forum so the theme’s developers and support community can help you with this.

    Also, if you can post a link to your site that is helpful as well.

    Thanks, and let us know.

    Hi hafina00,
    I believe based on your screenshot that you’re looking for a theme that supports two sidebars: one on left-hand side of content, and one on right-hand side of content. Also, the banners are ads, therefore you’ll want to set up and install a plugin that allows you to display ads.

    I would recommend using this filter on the Themes directory to try and narrow your results for themes that have “3 columns” and “left sidebar” and “right sidebar”: https://www.ads-software.com/themes/tags/three-columns+left-sidebar+right-sidebar/

    This might be a good one? https://www.ads-software.com/themes/newton/

    Although, it may not be 100% accurate it’ll give you a good starting point to filter down the results for a nice theme to get you started.

    As far as plugins that allow you to display ads, and most provide either widgets, or shortcodes that are allowed to be inserted in to a theme’s sidebars, and here are a few of those plugins:

    Hope this helps, and let us know if you need further assistance.

    Hi ronnyone,
    I see you’re using the OnePress theme. In the future, I recommend asking at the OnePress theme support forum so the plugin’s/theme’s developers and support community can help you with this.

    Since I believe you’re already using Jetpack, an easy way to add custom CSS is to activate the Custom CSS module. You’ll then add your custom CSS in the new stylesheet editor that’ll appear in your dashboard, under Appearance > Edit CSS.

    I would recommend trying to utilize the image with caption technique when inserting your image and text. Then, apply a little Custom CSS to get you the rest of the way there. Here is a brief overview of adding a caption to an image you’ve inserted into a post: https://premium.wpmudev.org/blog/how-to-add-a-caption-to-wordpress-images/

    Then add the following Custom CSS (with Jetpack’s Custom CSS module):

    .wp-caption.aligncenter {
        background-color: #eee; // or whatever color you prefer as your background color?
        padding: 15px 0; // this is optional and just gives a little padding on top and bottom of area
        text-align: center;
        width: 100%;
    }
    
    .wp-caption.aligncenter img[class*="wp-image-"] {
        display: inline-block;
    }

    I believe that should get you there. Let us know.

    Hi mladen720,
    Please provide further details, like:

    1. Your website URL
    2. Which theme are you using?

    Thanks.

    You can accomplish this one of two ways, depending on how comfortable you are editing theme files or CSS.

    1) Quick-and-easy: Add CSS to hide the feature image area on single posts. This code should work:

    .single-post .site-header-image {
        display: none;
    }

    2) More labor intensive, but still not hard: Create a child theme (best practice and in case the theme updates), and copy over the header.php file and modify so that the following existing code:

    <?php if (is_home()) : ?>
    
    	<section id="content" class="blog-home-content">
    
    	<?php else : ?>
    	<section class="site-header-image">
    		<?php // Check if this is a post or page, if it has a thumbnail, and if it's a big one
    		if ( is_singular() && has_post_thumbnail(  get_the_ID() ) ) :
    			// Houston, we have a new header image!
    			//echo get_the_post_thumbnail( $post->ID, 'magnus-large' );
    
    			$image_id = get_post_thumbnail_id();
    			$url = wp_get_attachment_image_src( $image_id, 'magnus-large' ); ?>
    
    			<div class="section-image" style="background-image: url(<?php echo esc_attr( $url[0] ); ?>);">
    			</div><!-- .section-image -->
    
    		<?php elseif ( get_header_image() ) : ?>
    			<img src="<?php header_image(); ?>" width="<?php echo HEADER_IMAGE_WIDTH; ?>" height="<?php echo HEADER_IMAGE_HEIGHT; ?>" alt="" />
    		<?php endif; // end check for featured image or standard header ?>
    	</section><!-- .site-header-image -->
    
    	<section id="content" class="site-content">
    <?php endif; // end check for blog homepage ?>

    Gets changed to this:

    <?php if (is_home()) : ?>
    
    	<section id="content" class="blog-home-content">
    
    	<?php else : ?>
    
    	<section id="content" class="site-content">
    
    <?php endif; // end check for blog homepage ?>

    Forum: Fixing WordPress
    In reply to: slideshow

    Can you please post link to your site?

    Hi gamerhatey0u,
    Can you please provide some more information, like:

    1. What is your site’s URL?
    2. What theme are you using?
    3. “I want to add a slideshow of the last post with on the homepage” – I’m assuming you want the last few (2 or more) posts. You might want to check out this plugin: https://www.ads-software.com/plugins/slideshow-jquery-image-gallery/

    Cheers.

    If you use a commercial theme or plugin and need support, please go to their official support channel. In order to be good stewards of the WordPress community, and encourage innovation and progress, we feel it’s important to direct people to those official locations.

    Goodlayers support: https://goodlayers.ticksy.com/

    Forum volunteers are also not given access to commercial products, so they would not know why your commercial theme or plugin is not working properly. This is one other reason why volunteers forward you to the commercial product’s vendors. The vendors are responsible for supporting their commercial product.

    Hi 150,
    It looks like your site is using the Nisarg theme. If this is the case I advise you post in the theme’s specific support forum located here: https://www.ads-software.com/support/theme/nisarg

Viewing 15 replies - 31 through 45 (of 131 total)