• Skip to main content
  • Skip to forum navigation

StudioPress

  • Shop for Themes
  • My StudioPress

Forum navigation

  • Home
  • General Genesis Discussions
  • StudioPress Themes
  • Genesis Blocks
    • Genesis Blocks
    • Genesis Custom Blocks
  • Retired Themes
  • FAQs
  • Forum Rules
  • Internationalization and Translations
  • Forum Bugs and Suggestions
  • Forum Log In

Are You Using The WordPress Block Editor?

Genesis now offers plugins that help you build better sites faster with the WordPress block editor (Gutenberg). Try the feature-rich free versions of each plugin for yourself!

Genesis Blocks Genesis Custom Blocks

frobn

Welcome!

These forums are for general discussion on WordPress and Genesis. Official support for StudioPress themes is offered exclusively at My StudioPress. Responses in this forum are not guaranteed. Please note that this forum will require a new username, separate from the one used for My.StudioPress.

Log In
Register Lost Password
  • Profile
  • Topics Started
  • Replies Created
  • Engagements
  • Favorites

Forum Replies Created

Viewing 20 posts - 81 through 100 (of 115 total)
← 1 2 3 4 5 6 →
  • Author
    Posts
  • August 9, 2015 at 12:08 pm in reply to: Cafe Pro: remove header from inner pages #161861
    frobn
    Member

    The header image is embedded in the <head> so you need to embed the following css just before </head> which I think you can do with Genesis-Simple-Hooks in the "wp_head Hook"

    The first line eliminates the image on all pages, the second line puts it back on the home page.

    <style>
    <!--
      .front-page-header {
      			background-image: none;);
      		} 
      .home .front-page-header {
      			background-image: url(//your-domain.com/cafe/wp-content/themes/cafe-pro/images/bg-header.jpg);
      		}
    -->
    </style>

    This will leave the logo centered over the menu on the inner pages.

    August 8, 2015 at 7:00 am in reply to: Move jQuery to Google CDN – Minimum Pro #161783
    frobn
    Member

    Try it this way in your function.

    wp_register_script( 'jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js' );
    wp_enqueue_script( 'jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js', array( 'jquery' ) , false, NULL, true );

    Are you moving jquery-migrate to the CDN also?

    Suggestion: move your js to the bottom of your html. You can do it with a plugin or manually in the functions.php

    Frank

    August 7, 2015 at 7:53 am in reply to: Minify CSS HTML Java #161686
    frobn
    Member

    Hi Victor,

    What I'd like to point out is that you did the right thing. There was a problem, you isolated it and decided the best course of action was to not minify. Did you experience similar problems with Rocket and other themes?.

    August 7, 2015 at 6:06 am in reply to: Minify CSS HTML Java #161676
    frobn
    Member

    First, I agree that there are risks anytime you add complexity so you need to take that into consideration. Though I think that if there is a problem it is likely to be from a conflict with another plugin.

    I have not used WP-Rocket so I can't speak specifically to it but I have and do use W3 Total Cache in combination with Async JS and CSS with very good results. The only problem I have run into so far is with Foo Gallery that has a conflict with Async Js. Lately I have I started combining JS files and Css files to reduce DNS requests then minifying them manually.

    August 6, 2015 at 7:42 am in reply to: Minify CSS HTML Java #161575
    frobn
    Member

    Google's PageSpeed Insights lists ten rules, 3 of which are:

    • Minify CSS
    • Minify HTML
    • Minify JavaScript

    It is possible that WP-Rocket has some functions that conflict with minimized code.

    August 1, 2015 at 9:43 am in reply to: custom widget area #161133
    frobn
    Member

    Try PHP Text Widget - https://wordpress.org/plugins/php-text-widget/

    July 29, 2015 at 4:05 pm in reply to: Change Home Widget Color in Parallax Pro #160904
    frobn
    Member

    Add this to at the end of your style.css file

    .home-section-4 {background-color:gray;}

    Change gray to the color you want.

    July 29, 2015 at 12:34 pm in reply to: Rearrange Widget Display in Home Page of Altitude Pro #160891
    frobn
    Member

    You won't find that particular arrangement but you can duplicate it by using 2 text widgets. In the first text widget use class one-third which will give you 3 areas for your content or use one text widget with 2 sections--the top section using class one-third.

    Hope this helps.

    July 29, 2015 at 9:43 am in reply to: Altitude Pro – Code relating to Slider in section 1 affects section 2 #160867
    frobn
    Member

    I had a similar problem on with a different theme and different slider. The height of the slide is not recognized past front-page-1. I tried various fixes the only one that worked for me was to add a padding-bottom which needs to be adjusted for different media points.

    Here is a partial solution similar to what worked for me:

    Add to your css:
    .front-page-1 {padding-bottom:1900px}

    This will work on large screens but needs to be adjusted for smaller screens.

    July 28, 2015 at 7:09 pm in reply to: Add Custom Background to Nav Bar in LifestylePro Theme #160814
    frobn
    Member

    When I clicked on view background image from my browser the image was not found. Try the using the complete url to the image in the css.

    July 28, 2015 at 6:57 pm in reply to: Image not being mobile responsive #160813
    frobn
    Member

    From your html:

    <div id="attachment_582" style="width: 610px" class="wp-caption alignright">
    <img class="size-full wp-image-582" src="http://www.westminsterav.com/wp-content/uploads/2015/04/buckeyes-600x267.jpg" alt="Audio/Visual Equipment provided by Westminster Technologies." /> 

    Try removing inline style width:610px or change to max-width:610px;.

    July 28, 2015 at 8:56 am in reply to: Footer in Altitude Pro #160744
    frobn
    Member

    Your table looks like it can be accomplished and styled much easier with an unordered list in a text widget.

    July 28, 2015 at 8:53 am in reply to: Footer in Altitude Pro #160742
    frobn
    Member

    Your table looks like it can be accomplished and styled much easier with unordered.

    Something like this:

    
    	<ul>
    		<li>Copyright – 2015 – Grupa Magnalium:</li>
    		<li>winternecie.info</li>
    		<li>prywatnosc.winternecie.info</li>
    		<li>redakcja.winternecie.info</li>
    		<li>prawnik.winternecie.info</li>
    		<li>dentysta.winternecie.info</li>
    		<li>firma.winternecie.info</li>
    		<li>infolotnicze.pl</li>
    	</ul>
    
    July 28, 2015 at 6:10 am in reply to: Where I find help to customize Genesis for speed? #160714
    frobn
    Member

    From GTMatrix:

    (Notice that your images are being reduced to width 500px and height ~270px; resizing them will give you a 39% reduction.)

    The following images are resized in HTML or CSS. Serving scaled images could save 130.1KiB (39% reduction).

    http://wellnessowners.com/wp-content/uploads/2015/06/over-eating-holiday-season.jpg?8c649f is resized in HTML or CSS from 665x350 to 500x263. Serving a scaled image could save 28.1KiB (44% reduction).
    http://wellnessowners.com/wp-content/uploads/2015/07/forest23.jpg?8c649f is resized in HTML or CSS from 700x379 to 500x271. Serving a scaled image could save 26.7KiB (49% reduction).
    http://wellnessowners.com/wp-content/uploads/2015/06/busy.jpg?8c649f is resized in HTML or CSS from 640x352 to 500x275. Serving a scaled image could save 15.5KiB (39% reduction).
    http://wellnessowners.com/wp-content/uploads/2015/06/walk2.jpg?8c649f is resized in HTML or CSS from 631x350 to 500x277. Serving a scaled image could save 15.0KiB (38% reduction).
    http://wellnessowners.com/wp-content/uploads/2015/06/last2.jpg?8c649f is resized in HTML or CSS from 657x350 to 500x266. Serving a scaled image could save 14.9KiB (43% reduction). ...

    Goto: http://tools.pingdom.com/fpt/#!/5lO8H/http://wellnessowners.com

    It gives you a better readout of all the requests being made. I would first look to see if any of the requests could be eliminated. For example most sites do not use wp-emoji-release.min.js, if you are not using it eliminate it. Second you may be able to combine separate css files into one file and js files in fewer files. Use http://jscompress.com/ to compress and combines css and js files.

    One other thing you can do is to defer your js, I looked it up and found that W3 Total cache does not defer js. You can use a plugin like WP Deferred JavaScripts that will defer your js.

    According to http://tools.pingdom.com/ your site loads in in 1.34 seconds from NY which is acceptable but I think loading under one second is doable.

    Frank

    July 28, 2015 at 5:33 am in reply to: Center Footer Widgets #160710
    frobn
    Member

    You have a wrap max-width of 1400px and 4 footer widget areas each with a width of 250px;

    This is your code:

    .footer-widgets-1, .footer-widgets-2, .footer-widgets-3, .footer-widgets-4
    {
    width: 250px;
    }

    You need to adjust the above width.

    Hope this helps.

    Frank

    July 27, 2015 at 8:07 pm in reply to: How to add css style to text widget on FrontPage of Altitude Pro theme #160658
    frobn
    Member

    The widget ID is #front-page-2 and the class is .front-page-2. You shouldn't need to change anything in ID.

    Insert your code at the end of styles.css

    .front-page-2 {
    /*css goes here */
    }

    Back up your file before making any changes.

    Hopes this helps.

    Frank

    July 27, 2015 at 3:24 pm in reply to: How to Add Google Fonts to Cafe Pro Theme? #160629
    frobn
    Member

    Open your functions.php file and look for : function cafe_enqueue_scripts_styles() {

    Add:
    wp_enqueue_style( 'google-fonts', '//fonts.googleapis.com/css?family=Tangerine:400,700|EB+Garamond|Dancing+Script’', array(), CHILD_THEME_VERSION );

    Make a backup of your functions file before you make any changes in it.

    Frank

    July 27, 2015 at 8:37 am in reply to: Where I find help to customize Genesis for speed? #160581
    frobn
    Member

    It good to someone taking performance seriously.

    Resize your images to 500x275. Look up snippets for genesis for the code you could put in your functions file to resize your images. This is likely to give you your biggest improvement.

    I see you are using W3 total cache but apparently it is not setup correctly to set the cache period appropriately.

    Here is tutorial:

    http://www.wpbeginner.com/plugins/how-to-install-and-setup-w3-total-cache-for-beginners/

    You site makes 73 requests, I would look for ones that could be eliminated or combined.

    July 27, 2015 at 8:05 am in reply to: Outreach Pro sub-footers and home bottom #160574
    frobn
    Member

    For the footer I would use a single footer with two sections of thirds. To keep them even use clearfix to separate the sections.

    For the sub footer I would use one-half with a padding-right:25px on first and padding-left:25px on the second half. You may have to adjust the padding to get it exactly the way you want.

    July 26, 2015 at 9:42 am in reply to: How to make a new row on a page? #160498
    frobn
    Member

    use <div class="clearfix"></div> between sections

  • Author
    Posts
Viewing 20 posts - 81 through 100 (of 115 total)
← 1 2 3 4 5 6 →
« Previous Page

CTA

Ready to get started? Create a site or shop for themes.

Create a site with WP EngineShop for Themes

Footer

StudioPress

© 2025 WPEngine, Inc.

Products
  • Create a Site with WP Engine
  • Shop for Themes
  • Theme Features
  • Get Started
  • Showcase
Company
  • Brand Assets
  • Terms of Service
  • Accptable Usse Policy
  • Privacy Policy
  • Refund Policy
  • Contact Us
Community
  • Find Developers
  • Forums
  • Facebook Group
  • #GenesisWP
  • Showcase
Resources
  • StudioPress Blog
  • Help & Documentation
  • FAQs
  • Code Snippets
  • Affiliates
Connect
  • StudioPress Live
  • StudioPress FM
  • Facebook
  • Twitter
  • Dribbble