• 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

mickmel

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 - 1 through 20 (of 92 total)
1 2 3 4 5 →
  • Author
    Posts
  • April 7, 2015 at 1:38 pm in reply to: Getting it Right #146957
    mickmel
    Member

    Campbell -- Using StudioPress themes is a great start. In terms of plugins and widgets, there are no "best", as it depends entirely on what you want to do.

    One great way to enhance your skills is to join a local Meetup and get to know more people in your area that use WordPress. Assuming you're still in Cadiz, this one looks pretty solid and they meet next Friday:
    http://www.meetup.com/Cadiz-WordPress-Meetup/

    Good luck!

    April 7, 2015 at 10:01 am in reply to: Google Analytics SEO check #146922
    mickmel
    Member

    Two initial thoughts:

    1 -- Don't put too much into what that plugin says. It's an awesome plugin, but just an algorithmic interpretation of your page, which can lead to confusion.
    2 -- What is the keyword that you're looking for?

    March 25, 2015 at 1:59 pm in reply to: Adding different Geotags to different pages #145651
    mickmel
    Member

    Jack -- Awesome! See you there.

    March 25, 2015 at 4:11 am in reply to: Know more about CSS-3 #145587
    mickmel
    Member

    http://www.w3schools.com/css/css3_intro.asp

    March 24, 2015 at 7:14 pm in reply to: Redirect index.php to index.html #145569
    mickmel
    Member

    Not sure what you mean by "from .php to .html". I would assume you'll take pages like "grill.php" and have them simply be "/grill/".

    If so, the Redirection plugin can help quite a bit with that.

    Example. This page:

    http://www.cardlog.com/our_company/history.htm

    Now redirects to this page:

    http://www.cardlog.com/about-cardinal/history/

    via that plugin. Works well, and preserves most of your link/seo equity.

    March 24, 2015 at 7:10 pm in reply to: Align widget to the bottom of container #145568
    mickmel
    Member

    Excellent! Glad I could help.

    March 24, 2015 at 7:10 pm in reply to: Altitude Pro Page Vertical Padding #145567
    mickmel
    Member

    Awesome, glad it helped!

    March 24, 2015 at 6:28 pm in reply to: Altitude Pro Page Vertical Padding #145561
    mickmel
    Member

    Use any kind of proper code editing tool. Notepad++ on Windows is a good place to start. Lots of good choices out there.

    March 24, 2015 at 6:19 pm in reply to: iFrame – I need a scroll bar #145558
    mickmel
    Member

    In your iframe statement, you set scrolling="no". Change that to "yes" or "auto" and it should do the trick.

    The Jetpack Infinite Scroll is pretty neat, but for something completely different.

    March 24, 2015 at 6:17 pm in reply to: Header Image is missing in post #145557
    mickmel
    Member

    Which image are you referring to? The home page and a post page seemed to be about the same.

    March 24, 2015 at 6:16 pm in reply to: Executive Pro Theme: Customized #145556
    mickmel
    Member

    Isaac -- Nice work! If you're looking for feedback, here are a few minor things I found:

    1. You should customize the favicon on the site.
    2. You should probably load Google Analytics on there to track traffic.
    3. Put a real testimonial in the internal sidebar.

    Hope that helps.

    March 24, 2015 at 6:13 pm in reply to: Altitude Pro Page Vertical Padding #145554
    mickmel
    Member

    You're welcome! Glad that did the trick.

    March 24, 2015 at 6:12 pm in reply to: Title #145553
    mickmel
    Member

    I see you're running WordPress SEO by Yoast (sidenote: you should update it to the latest version).

    Go into [SEO] --> [Titles & Metas] in your sidebar, choose the "Home" tab at the top, and then put "Fullfillco" in the main "Title template:" box. That should do the trick.

    March 24, 2015 at 6:07 pm in reply to: Adding different Geotags to different pages #145552
    mickmel
    Member

    Jack -- A couple of steps will get you there.

    1 - Download and activate the Genesis Simple Hooks plugin.
    2 - Go into the new [Genesis] --> [Simple Hooks] menu.
    3 - The first box on the page is for the header area. Check the "Execute PHP on this hook?" box below it and then use code like this to specify which pages for your code to appear on:

    <?php
    if (is_page('about-us')) {
    ?>
    whatever code you want to add
    <?php
    }
    ?>

    Hope that helps.

    March 24, 2015 at 5:51 pm in reply to: Altitude Pro Page Vertical Padding #145547
    mickmel
    Member

    Bert,

    Look near line 546 in your stylesheet for "margin-top". Change it to 220px or so and that should do the job.

    March 24, 2015 at 5:49 pm in reply to: Making Post Titles Smaller Font on Mobile #145546
    mickmel
    Member

    It depends on how you define "mobile device" and "tablet". These themes choose sizes based on the width of the viewport of the device. The smallest on Magazine Pro, by default, is 480px.

    Go in your stylesheet to roughly line 2194 (depending on what else you might have added), right below:


    @media
    only screen and (max-width: 480px) {

    and add:

    .entry-title {
    font-size: 24px; /* or a different size if you want */
    }

    March 24, 2015 at 5:45 pm in reply to: How did changing 'min-height' ruin my colour scheme? #145545
    mickmel
    Member

    That's certainly very odd. What is the URL for your site?

    March 24, 2015 at 5:09 am in reply to: AgentPress Pro – Padding under 1st widget in Primary Sidebar #145439
    mickmel
    Member

    It seems to be an issue with the form you're using ("nform"?). By default, widgets have a margin-bottom of 40px, but that plugin is overriding it with a margin-bottom of 0px.

    The CSS is minified so it's tough to see, but here's where the problem is:
    http://screencast.com/t/cMGzDLqly8V

    March 24, 2015 at 5:04 am in reply to: Spacing on site out? #145437
    mickmel
    Member

    The issue at the bottom of the page is that the text in the middle widget is dropping onto two lines, thus pushing the box down a bit further. Reduce the text in there or reduce the size of the text and it'll fix itself.

    I'm not seeing the problem at the top of the page...

    March 23, 2015 at 4:47 pm in reply to: H1,H2,H3 size change? #145379
    mickmel
    Member

    Cool, glad you got it.

  • Author
    Posts
Viewing 20 posts - 1 through 20 (of 92 total)
1 2 3 4 5 →

CTA

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

Create a site with WP EngineShop for Themes

Footer

StudioPress

© 2026 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