Forum Replies Created

Viewing 10 replies - 1 through 10 (of 10 total)
  • Thread Starter stratmansblues

    (@stratmansblues)

    ..

    Thread Starter stratmansblues

    (@stratmansblues)

    Searched on google and found a solution in case anyone is running into a similar issue.

    https://www.itsupportguides.com/knowledge-base/tech-tips-tricks/how-to-offset-anchor-tag-link-using-css/

    Thread Starter stratmansblues

    (@stratmansblues)

    Tried it with the stock twentyseventeen theme and took these screen shots. Still the same issue. The grey area seems to be gone now on both the original and child theme. Maybe that was a fluke. The navigation menu is cutting off. I have another website, drewjweb.com that uses the same theme and it is doing the same thing on iPad.

    https://pasteboard.co/GPgxq3W.png
    https://pasteboard.co/GPgyovN.png

    Thread Starter stratmansblues

    (@stratmansblues)

    Any workarounds for this issue?

    Thread Starter stratmansblues

    (@stratmansblues)

    <?php
    /**
     * The header for our theme.
     *
     * This is the template that displays all of the <head> section and everything up until <div id="content">
     *
     * @link https://developer.ww.wp.xz.cn/themes/basics/template-files/#template-partials
     *
     * @package Bhari
     * @since   1.0
     */
    
    ?><!DOCTYPE html>
    <?php bhari_html_before(); ?>
    <html <?php language_attributes(); ?>>
    <head>
    <?php bhari_head_top(); ?>
    <meta charset="<?php bloginfo('charset'); ?>">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="profile" href="http://gmpg.org/xfn/11">
    
    <?php bhari_head_bottom(); ?>
    <?php wp_head(); ?>
    
      
      <script>window._epn = {campaign:5338146318};</script>
    <script src="https://epnt.ebay.com/static/epn-smart-tools.js"></script>
      
      <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
    <script>
      (adsbygoogle = window.adsbygoogle || []).push({
        google_ad_client: "ca-pub-7282003640012354",
        enable_page_level_ads: true
      });
    </script>
      
    </head>
    
    <body <?php body_class(); ?>>
      
    <?php bhari_body_top(); ?>
    <div id="page" class="site">
        <a class="skip-link screen-reader-text" href="#content"><?php esc_html_e('Skip to content', 'bhari'); ?></a>
    
        <?php bhari_header_before(); ?>
        <header id="masthead" class="site-header" role="banner">
        <?php bhari_header_top(); ?>
    
            <div class="site-branding">
                <?php if (is_front_page() && is_home() ) : ?>
                    <h1 class="site-title"><a href="<?php echo esc_url(home_url('/')); ?>" rel="home"><?php bloginfo('name'); ?></a></h1>
                <?php else : ?>
                    <p class="site-title"><a href="<?php echo esc_url(home_url('/')); ?>" rel="home"><?php bloginfo('name'); ?></a></p>
                <?php endif; ?>
    
                <?php $description = get_bloginfo('description', 'display'); ?>
                <?php if ($description || is_customize_preview() ) : ?>
                    <p class="site-description"><?php echo $description; /* WPCS: xss ok. */ ?></p>
                <?php endif; ?>
            </div><!-- .site-branding -->
    
            <nav id="site-navigation" class="main-navigation" role="navigation">
                <button class="menu-toggle" aria-controls="primary-menu" aria-expanded="false">
                    <?php if (BHARI_SUPPORT_FONTAWESOME ) : ?>
                        <i class="fa fa-reorder" aria-hidden="true"></i>
                    <?php endif; ?>
                    <?php esc_html_e('Primary Menu', 'bhari'); ?>
                </button>
                <?php wp_nav_menu(array( 'theme_location' => 'primary', 'menu_id' => 'primary-menu' )); ?>
            </nav><!-- #site-navigation -->
    
        <?php bhari_header_bottom(); ?>
        </header><!-- #masthead -->
    
        <?php bhari_header_after(); ?>
    
        <?php if (get_header_image() ) : ?>
        <div class="custom-headers">
            <a href="<?php echo esc_url(home_url('/')); ?>" rel="home">
                <img src="<?php header_image(); ?>" width="<?php echo esc_attr(get_custom_header()->width); ?>" height="<?php echo esc_attr(get_custom_header()->height); ?>" alt="">
            </a>
        </div>
        <?php endif; // End header image check. ?>
    
        <?php bhari_content_before(); ?>
        <div id="content" class="site-content">
        <?php bhari_content_top(); ?>
    
    Thread Starter stratmansblues

    (@stratmansblues)

    Blade, I just tried that and got the same result.

    https://pasteboard.co/GEIyoF2.png

    Thread Starter stratmansblues

    (@stratmansblues)

    Using just the script tag they provide in the head section of the header.php file.

    <script>
      (adsbygoogle = window.adsbygoogle || []).push({
        google_ad_client: "ca-pub-7282003640012354",
        enable_page_level_ads: true
      });
    </script>
    Thread Starter stratmansblues

    (@stratmansblues)

    I already attempted to add a $ in the php shortcodes file, but an update was just released and canceled out my changes.

    So since I used a child theme, I added some css to show a $ before prices. If anyone else runs into this, here is the code that I used.

    .prod-cat-addt-details-price:before {
      content: "$ ";
    }
    .upcp-thumb-price:before {
      content: "$ ";
    }
    .upcp-list-price:before {
      content: "$ ";
    }
    .upcp-detail-price:before {
      content: "$ ";
    }
    Thread Starter stratmansblues

    (@stratmansblues)

    Anyone?

    Thread Starter stratmansblues

    (@stratmansblues)

    Found out the issue. I changed the height to a fixed 320px instead of min and max height. Seems to be lined up now.

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