Title: Progress Concepts's Replies | WordPress.org

---

# Progress Concepts

  [  ](https://wordpress.org/support/users/progressconcepts/)

 *   [Profile](https://wordpress.org/support/users/progressconcepts/)
 *   [Topics Started](https://wordpress.org/support/users/progressconcepts/topics/)
 *   [Replies Created](https://wordpress.org/support/users/progressconcepts/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/progressconcepts/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/progressconcepts/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/progressconcepts/engagements/)
 *   [Favorites](https://wordpress.org/support/users/progressconcepts/favorites/)

 Search replies:

## Forum Replies Created

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

1 [2](https://wordpress.org/support/users/progressconcepts/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/progressconcepts/replies/page/3/?output_format=md)
[→](https://wordpress.org/support/users/progressconcepts/replies/page/2/?output_format=md)

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Fruitful] iOS 9 iPad Split View Controller View size](https://wordpress.org/support/topic/ios-9-ipad-split-view-controller-view-size/)
 *  Thread Starter [Progress Concepts](https://wordpress.org/support/users/progressconcepts/)
 * (@progressconcepts)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/ios-9-ipad-split-view-controller-view-size/#post-6603580)
 * Done!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Fruitful] Both Retina / Non Retina Logo's showing on iPhone / Narrow screen](https://wordpress.org/support/topic/both-retina-non-retina-logos-showing-on-iphone-narrow-screen/)
 *  Thread Starter [Progress Concepts](https://wordpress.org/support/users/progressconcepts/)
 * (@progressconcepts)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/both-retina-non-retina-logos-showing-on-iphone-narrow-screen/#post-6184467)
 * Fair comment!
 * For your information then, in case anyone else asks, be aware that if it is set
   larger in left or right align, it allows it, but in centre it doesn’t.
 * Thanks again for a great plugin.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Fruitful] Both Retina / Non Retina Logo's showing on iPhone / Narrow screen](https://wordpress.org/support/topic/both-retina-non-retina-logos-showing-on-iphone-narrow-screen/)
 *  Thread Starter [Progress Concepts](https://wordpress.org/support/users/progressconcepts/)
 * (@progressconcepts)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/both-retina-non-retina-logos-showing-on-iphone-narrow-screen/#post-6184465)
 * It seems that in 2.7 you have different appearance depending on if you left, 
   centre or right align the logo.
 * If you choose left or right it adopts the settings you apply.
 * If you choose centre, it will shrink the logo if it is a larger logo (say one
   using the full 940px).
 * So it seems more work is needed to correct this.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Fruitful] Both Retina / Non Retina Logo's showing on iPhone / Narrow screen](https://wordpress.org/support/topic/both-retina-non-retina-logos-showing-on-iphone-narrow-screen/)
 *  Thread Starter [Progress Concepts](https://wordpress.org/support/users/progressconcepts/)
 * (@progressconcepts)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/both-retina-non-retina-logos-showing-on-iphone-narrow-screen/#post-6184254)
 * Hmmm, I am seeing differing results on different sites with this.
    I will look
   into it further and report back!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Fruitful] Both Retina / Non Retina Logo's showing on iPhone / Narrow screen](https://wordpress.org/support/topic/both-retina-non-retina-logos-showing-on-iphone-narrow-screen/)
 *  Thread Starter [Progress Concepts](https://wordpress.org/support/users/progressconcepts/)
 * (@progressconcepts)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/both-retina-non-retina-logos-showing-on-iphone-narrow-screen/#post-6184244)
 * Having looked at the CSS, it seems that you are missing the code to manage the
   logo’s for the narrow screen.
 * The style sheet has the following entries:-
 *     ```
       .header-hgroup a.link-logo-retina {
           display: none;
       }
       ```
   
 * and then:-
 *     ```
       @media only screen and (-webkit-min-device-pixel-ratio: 2),
       only screen and ( min--moz-device-pixel-ratio: 2),
       only screen and ( -o-min-device-pixel-ratio: 2/1),
       only screen and ( min-device-pixel-ratio: 2),
       only screen and ( min-resolution: 192dpi),
       only screen and ( min-resolution: 2dppx) {
           .header-hgroup a.link-logo {
               display: none;
           }
   
           .header-hgroup a.link-logo-retina {
               display: inline-block;
               width: 50%;
           }
       }
       ```
   
 * However, the divs are different between the full width and the narrow screens:-
   
   Whereas on full screen, the div containing the logo is `header-hgroup` on the
   narrow screen, it uses `logo_wrapper`.
 * Therefore it was necessary to add the following CSS to compensate (do the same
   actions on the narrow screen):-
 *     ```
       .logo_wrapper a.link-logo-retina {
           display: none;
       }
       ```
   
 *     ```
       @media only screen and (-webkit-min-device-pixel-ratio: 2),
       only screen and ( min--moz-device-pixel-ratio: 2),
       only screen and ( -o-min-device-pixel-ratio: 2/1),
       only screen and ( min-device-pixel-ratio: 2),
       only screen and ( min-resolution: 192dpi),
       only screen and ( min-resolution: 2dppx) {
           .logo_wrapper a.link-logo {
               display: none;
           }
   
           .logo_wrapper a.link-logo-retina {
               display: inline-block;
               width: 50%;
           }
       }
       ```
   
 * In so doing, the images are managed effectively.
 * Cheers.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Fruitful] FS Contact Form Font broken after last update](https://wordpress.org/support/topic/fs-contact-form-font-broken-after-last-update/)
 *  Thread Starter [Progress Concepts](https://wordpress.org/support/users/progressconcepts/)
 * (@progressconcepts)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/fs-contact-form-font-broken-after-last-update/#post-5985007)
 * I am not sure what change occurred in the theme that blocked the feed to FS Contact
   Form, however I added the CSS style manually in the form and all is now okay.
   
   Thanks.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Fast Secure Contact Form] Submit Button Font Suddenly Changed](https://wordpress.org/support/topic/submit-button-font-suddenly-changed/)
 *  Thread Starter [Progress Concepts](https://wordpress.org/support/users/progressconcepts/)
 * (@progressconcepts)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/submit-button-font-suddenly-changed/#post-5983395)
 * Spot on! I can only assume that the disabled cache in my browser wasn’t working.
   
   Thanks for the heads up! Cheers
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Fast Secure Contact Form] Submit Button Font Suddenly Changed](https://wordpress.org/support/topic/submit-button-font-suddenly-changed/)
 *  Thread Starter [Progress Concepts](https://wordpress.org/support/users/progressconcepts/)
 * (@progressconcepts)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/submit-button-font-suddenly-changed/#post-5983327)
 * Hi
    I have added the following:- font-family : Arial, Helvetica, sans-serif; 
   onto the end of the Submit button: string, however even after flushing the caches
   etc., the text remains serif. Could you point me at what needs to be added and
   where in order to carry the change? Many thanks.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Fast Secure Contact Form] Submit Button Font Suddenly Changed](https://wordpress.org/support/topic/submit-button-font-suddenly-changed/)
 *  Thread Starter [Progress Concepts](https://wordpress.org/support/users/progressconcepts/)
 * (@progressconcepts)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/submit-button-font-suddenly-changed/#post-5983208)
 * Hi. I updated the theme a week ago, and didn’t notice it right away, however 
   I noticed it today.
    The plugin had an update available which I installed, and
   the issue remains. I can’t recall if there was a plugin update at the same time
   as the theme too. Link is [http://www.progressconcepts.com/contact-progress-concepts/](http://www.progressconcepts.com/contact-progress-concepts/)
   All contact form buttons are doing the same. I assume I can override the font?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Fruitful] Info Box Image Size](https://wordpress.org/support/topic/info-box-image-size/)
 *  Thread Starter [Progress Concepts](https://wordpress.org/support/users/progressconcepts/)
 * (@progressconcepts)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/info-box-image-size/#post-5078931)
 * Just to let people know I have resolved this.
 * Added this into custom css.
 * .info_box img.icon {
    width:25px; height:25px; }
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Fruitful] date on blog](https://wordpress.org/support/topic/date-on-blog/)
 *  [Progress Concepts](https://wordpress.org/support/users/progressconcepts/)
 * (@progressconcepts)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/date-on-blog/#post-4811238)
 * You can remove it from the side by adding the following to your custom css:-
 * .blog_post .date_of_post {
    display: none; }
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Fruitful] Can you enable an @2x version of the social icons?](https://wordpress.org/support/topic/can-you-enable-an-2x-version-of-the-social-icons/)
 *  Thread Starter [Progress Concepts](https://wordpress.org/support/users/progressconcepts/)
 * (@progressconcepts)
 * [12 years ago](https://wordpress.org/support/topic/can-you-enable-an-2x-version-of-the-social-icons/#post-4840674)
 * Many thanks.
 * Great theme. Keep up the great work.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Fruitful] Increase font size of title (in place of logo)](https://wordpress.org/support/topic/increase-font-size-of-title-in-place-of-logo/)
 *  Thread Starter [Progress Concepts](https://wordpress.org/support/users/progressconcepts/)
 * (@progressconcepts)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/increase-font-size-of-title-in-place-of-logo/#post-4773638)
 * Hi. Thanks for this. Appreciate you taking the time to details the changes.
 * I have had a thought that I may do a logo with what I want for the header. I 
   wasn’t intending on doing before, but on reflection it may be a good idea.
 * Thank you again, and thanks for such a great theme. Keep up the good work.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Fruitful] "Block Quote" Button not working](https://wordpress.org/support/topic/block-quote-button-not-working/)
 *  [Progress Concepts](https://wordpress.org/support/users/progressconcepts/)
 * (@progressconcepts)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/block-quote-button-not-working/#post-4708917)
 * I have just taken a look and can see a couple of block quotes on the page you
   link to.
    Perhaps you needed to clear your browsers cache? Have you checked again?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Fruitful] Getting */ above header](https://wordpress.org/support/topic/getting-above-header/)
 *  [Progress Concepts](https://wordpress.org/support/users/progressconcepts/)
 * (@progressconcepts)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/getting-above-header/#post-4697040)
 * Please mark as resolved.

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

1 [2](https://wordpress.org/support/users/progressconcepts/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/progressconcepts/replies/page/3/?output_format=md)
[→](https://wordpress.org/support/users/progressconcepts/replies/page/2/?output_format=md)