Forum Replies Created

Viewing 13 replies - 1 through 13 (of 13 total)
  • Thread Starter eprowe

    (@eprowe)

    Absolutely beautiful, and much more mobile friendly than the hack I managed to put together after a 15 minute break and my original post. Ain’t that how it always works?

    I made a few minor adjustments to fine tune the appearance to get exactly what I wanted. Here is the final CSS for anyone who sees this in the future.

    @media all and (min-width: 600px) {
    
    .header-inner {
    	display: flex;
    	align-items: center;
    	justify-content: space-between;
    	padding: 24px 0;
    }
    .site-header {
    	padding: 0 3.125% 0;
    }
    .site-header .social-media-icons,
    .site-header .search-form-container {
    	width: 25%;
    	margin: 0;
    }
    .site-header .social-media-icons {
    	order: 1;
    }
    .title-container {
    	margin: 0;
    	order: 2;
    	width: 50%;
    }
    .site-header .search-form-container {
    	order: 3;
    }
    }
    Thread Starter eprowe

    (@eprowe)

    Looks great Ben, thanks again!

    Thread Starter eprowe

    (@eprowe)

    Think your link expired before I could get the DL. I can wait for the next scheduled update if you happen to know when that’ll be. Thanks for your attention on this though Ben!

    Thread Starter eprowe

    (@eprowe)

    Swapped themes, uninstalled and deleted founder, uploaded new ZIP you provided, activated “new” Founder theme. Appears to be working a champ! Correctly displaying one post a day on the correct day since 6/22.

    When you update Founder on www.ads-software.com will I automagically be updated as well or should I revert to the www.ads-software.com version and wait for your update?

    Thanks again for taking a look at this @bensibley! I’ve hit you up a few times and you’ve always been gracious and responsive with support, even from us freeloaders. Keep up the great work and please remember I also saw this behavior in you theme Author AND Tracks.

    Thread Starter eprowe

    (@eprowe)

    Absolutely. From just moments ago.

    Timezone: Los Angeles
    Universal time (UTC) is 2019-06-28 16:29:58. Local time is 2019-06-28 09:29:58.
    This timezone is currently in daylight saving time.
    Standard time begins on: November 3, 2019 2:00 am.
    Date Format: June 28, 2019 F j, Y
    Time Format: 9:29 a.m. g:i a
    Week Starts on: Sunday

    Here’s a timedatectl output from server

    Local time: Fri 2019-06-28 09:33:51 PDT
    Universal time: Fri 2019-06-28 16:33:51 UTC
    RTC time: Fri 2019-06-28 16:33:52
    Time zone: America/Los_Angeles (PDT, -0700)
    System clock synchronized: yes
    systemd-timesyncd.service active: yes
    RTC in local TZ: no
    Thread Starter eprowe

    (@eprowe)

    Beautiful Ben, thanks a ton. I made the simple replacement you outlined and all the icons were fixed except the envelope (contact form) and it broke the RSS feed icon.

    I replaced my social-icons.php file with the original from the parent theme and this fixed all the icons.

    At first I couldn’t figure out why I had a custom file in the child theme in the first place. Then I remembered I added an elsif for the ’email-form’ to modify the title to read “Subscribe via Email” instead of “email-form”. Just a personal OCD thing.

    Thanks for the quick feedback and support it’s really appreciated!

    Thread Starter eprowe

    (@eprowe)

    Didn’t realize you were also the author of Suffusion! I used Suffusion for years before moving to a new theme on two of domains, but still use it on a third. It’s great work! I didn’t realize that it had been pulled. I read your post and I’m sorry to hear it.

    I completely understand the desire to keep a hobby a hobby and not have it take over your entire life.

    Thanks again for following up and keep up the great work.

    Thread Starter eprowe

    (@eprowe)

    Wow Sayontan I’m surprised you actually responded. Figured you’d given up on this plugin LONG ago.

    While you’re looking at authoring an update, and if you have the time/desire, you may want to remove FontDeck support as the site is no longer live.

    Otherwise want to say love the plugin love how simple and easy to use it is. Also amazingly unobtrusive. Thanks a ton.

    Thread Starter eprowe

    (@eprowe)

    Spot on Ben, worked a champ! My OCD thanks you. Keep up the work on a great theme.

    For anyone else who runs into this issue here is, I think, the pertinent CSS snippet that I added via the Customizer:

    .entry-container {
      overflow: hidden;
    }
    .entry-content .full-width {
      position: relative;
      width: calc(113% + 2px);
      left: -6.5%;
    }
    @media all and (min-width: 43.75em) {
       .entry-content .full-width {
          width: calc(128.6% + 2px);
          left: -14.3%;
       }
    }
    @media all and (min-width: 56.25em) {
       .entry-content .full-width {
          width: calc(150% + 2px);
          left: -25%;
       }
    }
    @media all and (min-width: 68.75em) {
       .entry-content .full-width {
          width: calc(163.6% + 2px);
          left: -31.8%;
       }
    }
    @media all and (min-width: 75em) {
       .entry-content .full-width {
          width: calc(179.9% + 2px);
          left: -39.95%;
       }
    }
    Thread Starter eprowe

    (@eprowe)

    I decided to take a deeper dive and came up with a REALLY bad hacky fix. I started by copying the source of img-mouseover.js to Notepad++. Did this so I can share specific line numbers.

    First change I made was following line 84 which reads:
    this.outSrc = this.src;

    I added the following:
    this.outSrcSet = this.srcset;

    This caches the original srcset values.

    Next we need to modify the mouseover and mouseout functions. They are located on approximately lines 88 and 99.

    In mouseover look for the line this.src = this.overImg.src; and follow it with this.srcset = this.overImg.src;

    In mouseout look for the line this.src = this.outSrc; and follow it with this.srcset = this.outSrcSet;

    You could also try to update the click function in a similar fashion. Following the line this.src = this.clickImg.src; with this.srcset = this.clickImg.src;

    Once again this is very hacky, but will return the basic mouseover functionality.

    Thread Starter eprowe

    (@eprowe)

    Working good Jeff! Keep up the great work.

    Thread Starter eprowe

    (@eprowe)

    Thanks!

    Thread Starter eprowe

    (@eprowe)

    Thanks for the quick response Jeremiah. Looks like I herped when I should have derped. I saw the other thread about this exactly same issue and had cleared cache and opened another browser. Still experienced the issue. Guess I didn’t clear the cache back far enough. Sorry about that! Thanks for the great work on the plugin and again on the quick response!

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