• 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

anotherusername

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 - 21 through 40 (of 199 total)
← 1 2 3 … 8 9 10 →
  • Author
    Posts
  • December 26, 2014 at 3:00 pm in reply to: BASIC questions about getting STARTED #135354
    anotherusername
    Participant

    So I asked if the $60 Framework included a default child theme which I could roll with, or if someone could suggest a theme to purchase for my project, so I would be able to consider it.

    If you buy the $60 framework, then aside from the other themes that are sold by studiopress (and the free basic child theme) there are also many genesis 2.0 child themes out there that are free as well.

    And if that wasn't enough for you, there are also some free genesis 1.0 themes if you insist.

    But if you don't have the time to develop them, then pick whichever theme is best for you and is going to need the least amount of development - whether it is a genesis framework or not.

    And for what it's worth, neither basic, pascal nor fortran knowledge is going to be particularly helpful when it comes to learning wordpress / genesis. An HTML background will be helpful though.

    sorry if I might appear negative. I am just trying to save you money and frustration.

    December 24, 2014 at 5:18 pm in reply to: Magazine Pro – How to Restore Default Button Class to Comment Form Submit #135283
    anotherusername
    Participant

    It could be I who is confused 🙂

    Firstly, could you link to a page with a CTA that you DO want to be affected by these rules???

    It looks to me that the CSS rules for the genesis extender plugin is affecting how the button looks.

    I am not familiar with this plugin, but maybe just to confirm, you could disable that plugin and see if it affects that comment button.

    These appear to be some of the rules from that plugin that are affecting the comment button: (in particular, it is - I believe - the input[type="submit"] selector, but I have been known to be totally wrong in the past, so practice due diligence.)

    button-cta-black-border, input[type="button"], input[type="reset"], input[type="submit"], .button-cta-black-border, .entry-content .button-cta-black-border {
        border: medium solid #000;
        color: #000;
        cursor: pointer;
        font-family: Lato,sans-serif;
        font-size: 18px;
        font-weight: 400;
        letter-spacing: 1px;
        padding: 12px;
        text-align: center;
        text-transform: uppercase;
        width: 100%;
    }

    Sooo... if that is the case, then we will need to look at how you can limit the genesis extender CSS from overriding the default comment button.

    One thing is, do you have the Style Trump plugin from Carrie Dils?

    http://www.carriedils.com/genesis-style-trump/

    That is a start, as it will allow your genesis css style sheet to be loaded afterwards.

    But that is only part of the fix. Most likely if you want to apply those styles to ONLY the CTA, you are going to have to find the parent div of the CTA so that we can restrict the selectors even further.

    Hope this helps.

    And I apologize if I am totally misunderstanding what you want. I have been known to bark up the wrong tree many a time.

    December 24, 2014 at 4:51 pm in reply to: Executive Pro – Increase number of featured pages #135280
    anotherusername
    Participant

    Well, that is ONE way to do it...

    but yeah, if you mess with it that way, then you are going to have to work some CSs magic in there to make sure that it looks nice depending on the media queries.

    But really, the CORRECT way is they that YOU KNOW HOW to do.

    I would probably hack the template and put in another widget area, but that is just me.

    December 24, 2014 at 1:58 am in reply to: Magazine Pro – How to Restore Default Button Class to Comment Form Submit #135235
    anotherusername
    Participant

    Hi ya, Kellylise:

    do you mean this:

    
    button,
    input[type="button"],
    input[type="reset"],
    input[type="submit"],
    .button,
    .entry-content .button {
    	background-color: #222;
    	border: none;
    	color: #fff;
    	cursor: pointer;
    	font-family: 'Raleway', sans-serif;
    	padding: 16px 24px;
    	text-transform: uppercase;
    	width: auto;
    }
    
    button:hover,
    input:hover[type="button"],
    input:hover[type="reset"],
    input:hover[type="submit"],
    .button:hover,
    .entry-content .button:hover {
    	color: #fff;
    	background-color: #e8554e;
    }
    
    .entry-content .button:hover {
    	color: #fff;
    }
    
    .button {
    	display: inline-block;
    }
    December 23, 2014 at 8:18 pm in reply to: Resizing an image dynamically with CSS as the browser width/height changes? #135223
    anotherusername
    Participant

    You appear to be calling that first image with this code:

    <img class="alignleft wp-image-4174" src="http://www.nct-archive.org/nct-archive-content/uploads/2014/12/Smithsonian1.jpg" alt="Bandbox from the Kendall Collection" width="250" height="200" />

    So that is going to prevent your image from resizing.

    P.S. If you strip out the width and height inline, how do you control the size so it’s not larger than one wants?

    One thing you can do is use the max-width css tags. You can use either a pixel value or a percentage value (and then the image would be related to the size of its parent element).

    I would suggest reading up on the difference in CSS between width, min-width, and max-width, but in short, when you say, width="250", it is telling the image to be EXACTLY 250px ALL THE TIME, and not to be larger nor smaller.

    December 23, 2014 at 3:38 pm in reply to: Genesis Sample Child Theme – No Blog Posts Controls? #135203
    anotherusername
    Participant

    Firstly, nice photography.

    When you say "target blog elements," which elements in particular are you trying to target?

    Usually there is a class assigned to the body element so that you can target things on a per page basis.

    for instance if you go to your weddings page and inspect the body element, you will see there is a .page-id-9 class tag

    But I don't see any distinctive class tag in the body element of the blog archive page.

    I am kind of surprised that there isn't one there. I am sure you could add a body class tag using filter hooks though.

    Hope this helps.

    December 23, 2014 at 1:10 pm in reply to: Resizing an image dynamically with CSS as the browser width/height changes? #135194
    anotherusername
    Participant

    Which image are you trying to change?

    Be sure that you don't have width and height declared inline in your image tags.

    December 22, 2014 at 8:16 pm in reply to: Social Media Icons on one line on mobile #135101
    anotherusername
    Participant

    Glad it worked!!!

    December 22, 2014 at 6:06 pm in reply to: BASIC questions about getting STARTED #135093
    anotherusername
    Participant

    Genesis is NOT the easiest theme / framework to use, unfortunately.

    It IS very FLEXIBLE, and that flexibility allows you to develop all sorts of special features.

    But... you really should know php, css, and how wordpress handles hooks if you want to customize it.

    Otherwise, I would go to one of the different wordpress sits that sell themes and just find a them that is as close as possible to what you want first.

    BTW: "least expensive option" rarely - if ever - means best... or even "appropriate." I mean, I used to shop for clothes and tried to always purchase "the least expensive" option. Now, my wife doesn't allow me to buy clothes for myself.

    ~~~~

    One more thought: If your site is going to be having lots of training courses, certificates of completion, etc., you could POSSIBLY do it in wordpress, but I would probably look at something like Drupal instead. WordPress is first and foremost a blog with added functionality. Drupal is more of a true CMS.

    December 22, 2014 at 5:41 pm in reply to: Social Media Icons on one line on mobile #135088
    anotherusername
    Participant

    One thing you can try is reducing the padding for the tablet width media query that is in this rule:

    .parallax-home .simple-social-icons ul li {

    You have the left and right margin at 10px, and you can reduce it to something like 3px and that should still look pretty good for most tablets.

    Once you get down to smartphone sizing, the media query for that removes all padding.

    Hope this helps.

    December 22, 2014 at 5:26 pm in reply to: Lifestyle Pro – Responsive Header #135086
    anotherusername
    Participant

    You are going to need to write media query rules for your .site-titel a and for your .site-header

    Basically you will need to determine how big you want everything and start working on your min-height for site-title a and also on your margins and paddings for the header.

    That doesn't look like it is a studiopress them. You might get better support if you ask on the forum where they sold you the theme (of course, you are always welcome to ask here, too. Just trying to figure out where you might get the best / fastest advice).

    Hope this helps.

    December 22, 2014 at 5:06 pm in reply to: CUSTOM FORM #135082
    anotherusername
    Participant

    Do you have the html file posted somewhere online so we can see the difference between how it appears correctly and how it is appearing incorrectly?

    December 22, 2014 at 12:20 pm in reply to: Parallax Pro – adding images to subpages #135069
    anotherusername
    Participant

    can you please post the solution here?

    December 21, 2014 at 4:01 pm in reply to: Add Class to Structural Divs #135030
    anotherusername
    Participant

    Ahh... ok.

    I am pretty sure you would use filter hooks then.

    Try using the html5 theme support first and see if it helps to solve everything:

    Enable HTML5 Markup

    December 21, 2014 at 2:30 pm in reply to: Add Class to Structural Divs #135027
    anotherusername
    Participant

    I apologize that I am a little bit lost as to WHY you want to do this?

    if they already have an ID, then it should be easy to target them without having to add a class.

    Is there something page-specific you are trying to apply?

    There’s another forum post about using filters, but there aren’t any filters for the footer, inner and header. They only worked with html 5 elements.

    You might want to double check the reference for the old filter hooks, which will help you translate HTML5 hooks in to html4 hooks.

    http://my.studiopress.com/docs/genesis-markup-comparison/

    For instance, the xhtml equivilant of .site-header would be the #header div. So if there is a filter that references .site-header, you SHOULD be able to just change it to #header (I believe).

    alternatively, I think you can add html5 theme support by adding this to your functions file:

    Enable HTML5 Markup

    But I haven't tested myself yet.

    Hope this helps.

    December 21, 2014 at 12:28 pm in reply to: problem with shoe store theme in Magenta #135014
    anotherusername
    Participant

    @ Yonishak:

    You need to find a support forum for MAGENTO, not for Genesis / WordPress.

    I am sorry that the support for Magento CE is almost non-existant, but unfortunately, you are unlikely to find any help here.

    Maybe you can ask on stack exchange or some of the other support forums out there.

    Hope this helps, and good luck.

    December 20, 2014 at 6:35 pm in reply to: Executive Pro Pre-Purchase Question #134974
    anotherusername
    Participant

    Well... it COULD be easy, but I think you might get a quicker answer by contacting stueiopress directly.

    Most Geneses themes have at least two places where you can locate the drop down menu. (a primary and a secondary location).

    So you might ask them where exactly the secondary menu location is on the executive theme.

    The issue is that the different PAGES and POSTS won't have a slider on them, so once you have the menu positioned right on the home page, it probably won't look right on the other pages.

    Unless you want to start studying up on code and learn how to unhook actions based on conditionals.

    It ain't rocket surgery, but really, if you are going to be using genesis, then you should learn how to code.

    December 20, 2014 at 6:25 pm in reply to: Adding Space above Header- AgentPress (not Pro) #134973
    anotherusername
    Participant

    Not 100% sure I understand what you want.

    But what I BELIEVE yoiu want to do is change this set of rules from this:

    #header {
        color: #FFF;
        margin: 0px auto;
        min-height: 125px;
        text-shadow: 1px 1px #000;
        width: 960px;
    }

    to this instead:

    #header {
        color: #FFF;
        margin: 50px auto 0;
        min-height: 125px;
        text-shadow: 1px 1px #000;
        width: 960px;
    }

    Basically, you would change this line:

    margin: 0px auto;

    to this:

    margin: 50px auto 0px;

    Hope that helps. Apologies in advance if this is NOT what you were asking.

    WARNING: Completely irrelevant and potentially snarky comment to follow:

    Now is the time to really start looking into having a a responsive theme - especially for a real estate site.

    I would imagine lots of people would be driving around and see a for sale sign with that company's name on it. then they would use their phone to check out the company's site.

    Just my two centavos...

    December 20, 2014 at 6:15 pm in reply to: Change Welcome Text Size and Width in Ambiance Pro #134972
    anotherusername
    Participant

    It sounds to me like you are going to need to write media queries for your css.

    As long as you have

    .home .welcome-message .wrap {width: 1240px;}
    .home .welcome-message h1{font-size: 3.6em;}

    WITHOUT having media queries, then the text and the div it is in won't resize. The div will remain 1240 px while the h1 font size will still be 3.6em (which is pretty big).

    https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Media_queries

    December 19, 2014 at 8:23 pm in reply to: Float Image Left and stop text wrap #134941
    anotherusername
    Participant

    If hipstershaun is correct, and you want the layout of the embryo-transfer page to look smilar to the dairy-services, then you would probably need to use the Avia Layout Builder, which I am assuming is already installed on that site.

    If you look at the CSS for the dairy-services page, you can see that the content field is using columns created by that Avia layout Builder.

    Hope this helps.

  • Author
    Posts
Viewing 20 posts - 21 through 40 (of 199 total)
← 1 2 3 … 8 9 10 →
« Previous Page

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