• 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

Doug

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 57 total)
← 1 2 3 →
  • Author
    Posts
  • May 12, 2019 at 10:19 am in reply to: Is an embedded MailChimp form background color controllable via Additional CSS? #491127
    Doug
    Participant

    Thanks, Victor. That worked great.

    Yes, on the social media icons, I wasn't clear on how those worked. I removed the h1 tags, which I thought were related to size but aren't. Thanks for noting that.

    d

    May 7, 2019 at 12:38 pm in reply to: Best way to switch colors on Genesis Sample theme #491012
    Doug
    Participant

    Thanks, Victor.

    I thought there must be something in Customize for selecting this, but if not, I'll use the Custom CSS.

    thx
    doug

    February 18, 2019 at 3:29 pm in reply to: Trouble with indents when using .entry-content class selector #489595
    Doug
    Participant

    Thank you Victor, that worked great!

    January 29, 2019 at 5:06 pm in reply to: Possible to create Portfolio Pro item from a Page? #489123
    Doug
    Participant

    Thanks, Victor.

    (I just found out the Portfolio Pro pages don't work with Gutenberg, so just creating a different portfolio system.)

    October 15, 2018 at 12:05 pm in reply to: Does Genesis Sample child theme use a content container which has no max-width? #223771
    Doug
    Participant

    Thanks, Victor. The style.css suggestion helped a lot.

    October 14, 2018 at 3:36 pm in reply to: Does Genesis Sample child theme use a content container which has no max-width? #223749
    Doug
    Participant

    Victor

    Thanks. I've used that link quite a bit, and it's been enormously helpful to me. Appreciate you publishing that.

    I should have been more specific. I'm familiar with Inspect, but don't know what to look for in the code to indicate if the Genesis Sample theme uses a content container with no max-width. I've searched for "container" and found .site-container, but didn't see any reference to max-width.

    So to narrow my question, it would be 'What to look for in Inspect that would indicate if Genesis Sample theme uses a content container with no max-width?'

    October 14, 2018 at 3:19 pm in reply to: How to change site background image in Genesis Sample theme #223748
    Doug
    Participant

    Thank you Victor! That worked great.

    October 13, 2018 at 5:40 pm in reply to: Changing main color scheme of site in CSS #223727
    Doug
    Participant

    Thanks, Anita. Did that and it worked great!

    October 12, 2018 at 12:13 pm in reply to: Changing main color scheme of site in CSS #223701
    Doug
    Participant

    Thank you! That worked.

    I'm confused, though, because I used this to change the same keys of the footer.

    .footer-widgets {
    	background-color: #3d444c;
    	color: white;
    }

    Why would that require the "." but body doesn't? Body isn't a CSS Class?

    September 18, 2018 at 12:16 pm in reply to: Does Genesis Sample theme support Gutenberg's wide and full alignment? #223273
    Doug
    Participant

    OK, thanks Victor.

    September 17, 2018 at 1:54 pm in reply to: Is it ok to use the framework by itself with Gutenberg #223250
    Doug
    Participant

    Very interested in your tutorial, Victor, based on your previous writings. Sounds great.

    August 2, 2018 at 2:06 pm in reply to: Trying to locate "text-indent" code location to adjust indent #222182
    Doug
    Participant

    Thank you. Worked great and I'm using the custom HTML box, and added a bit of style (reduced the size a bit).

    August 1, 2018 at 10:34 pm in reply to: Trying to locate "text-indent" code location to adjust indent #222160
    Doug
    Participant

    That was fantastic input, Victor. The footer had a custom HTML widget with the code below, which I removed and the problem went away.

    The code below is CSS, right? Should I not use CSS in the Custom HTML widget? OK in the text widget?

    thanks
    doug

    <body>
    <style>
    p {
    text-align: left;
    font-size: 16px;
    text-indent: 80px;
    }
    </style>
    <p> Arrovox, LLC</p>
    <p> Los Angeles, CA USA</p>

    <p align="center">Contact: [email protected]</p>
    </body>

    August 1, 2018 at 10:11 pm in reply to: Trying to locate "text-indent" code location to adjust indent #222159
    Doug
    Participant

    Ug, but thank you very much, Victor. That gives me great direction.

    June 20, 2018 at 12:37 am in reply to: Design for Home Page Widget 3 (Atmosphere) doesn't look right #221006
    Doug
    Participant

    Thanks, Brad. I didn't quite realize how that works, but it's pretty slick.

    I did run into some formatting issues, though. There's an odd indent in the text paragraph, and the button was aligned right, as was the Continue text inside the button.

    Arrovox

    I selected the first word in the text paragraph and using Inspect, found the following section.

    ==========
    .featured-content .entry-content p {
    font-size: 18px;
    font-size: 1.8rem;
    }

    p {
    text-align: left;
    font-size: 16px;
    text-indent: 80px;
    }
    =========

    So I changed the 'text-indent' to 0, and that fixed the indentation issue in Inspect.

    Here's a screen grab of that in Inspect:
    Screen grab of Inspect for front page 3 module text paragraph

    However, when i went into Style.css to change the code permanently, I couldn't find the 'text-indent' element. Here's what was in the Featured Content code section:

    =================
    .featured-content .entry {
    padding-bottom: 60px;
    }

    .featured-content .entry-content p {
    font-size: 18px;
    font-size: 1.8rem;
    }

    .featuredpost .entry-title {
    font-size: 24px;
    font-size: 2.4rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    }
    ==================

    I don't understand how the code on the Style.css page is different than the code in Inspect. There's only one Featured Content section on style.css, correct?

    Thanks for any additional input.
    doug

    May 29, 2018 at 4:33 pm in reply to: How to do visual adjustments on Front Page 4 module and widgets in Atmospher Pro #220364
    Doug
    Participant

    Brad

    Want to give you an update.

    In the style.css, I changed the following from 50% to 100%

    a.alignleft,
    a.alignnone,
    a.alignright {
    Max-width: 100%;
    }

    That seems to have fixed the desktop and mobile versions.

    It seems to be working on every browser I test it on, so I think I'm good on this.

    Thank you for your help on this. Greatly appreciate it.
    doug

    May 29, 2018 at 2:52 pm in reply to: How to do visual adjustments on Front Page 4 module and widgets in Atmospher Pro #220360
    Doug
    Participant

    Thanks, Brad. I would definitely prefer to use the Widget settings, but they don't seem to be working for me. When I select 728x0, which 728w should be more than wide enough, they continue to be tiny thumbnails, and I can't figure out why that doesn't make the thumbnails larger.

    May 27, 2018 at 6:40 pm in reply to: How to do visual adjustments on Front Page 4 module and widgets in Atmospher Pro #220277
    Doug
    Participant

    Thanks, Brad.

    I pasted the CSS into the style.css doc, at the very bottom. I've since removed it, as I was trying other things. But could put it back.

    Regarding the featured page widget settings, yes, that was the first thing I tried, but I wasn't seeing any results that worked. My images are rectangle, so they won't work at the largest, 1200x1200 size. So I went the next largest horizontal size, 728x0. The "0" didn't make any sense to me, but figured maybe it was a way to enable it to scale.

    Where I was confused is that the 728x0 didn't make it anywhere close to 728p wide. So thought it wasn't working for some reason.

    I also tried removing the "50%" part of this
    a.alignleft, a.alignnone, a.alignright {
    max-width: 50%;
    }

    That's working for the desktop, but the mobile images are still tiny. So now I'm trying to sort out why the mobile images are still small, and where to change that.

    May 27, 2018 at 10:38 am in reply to: How to do visual adjustments on Front Page 4 module and widgets in Atmospher Pro #220266
    Doug
    Participant

    Thanks Brad.

    I'm still seeing the tiny thumbnails when the screen is larger than 800p.
    https://drive.google.com/open?id=1vbp3wdnceIL0zhEtsTiamv04gNHlJ1aB

    I had some changes made to the site a few months ago, and perhaps there's a conflict in the code somewhere.

    May 26, 2018 at 4:10 pm in reply to: How to do visual adjustments on Front Page 4 module and widgets in Atmospher Pro #220256
    Doug
    Participant

    Thanks, Brad

    Just tried that but it still isn't working. And was sure to clear the cache (using Chrome on a Mac).

    Here's a screen of the code in the style.css doc
    https://drive.google.com/open?id=1WVoeitcAkOzik5vXwEjX-lue01YLrv0A

    Here's a snapshot of the front-page-4 section on the homepage at http://www.arrovox.com
    https://drive.google.com/open?id=1vbp3wdnceIL0zhEtsTiamv04gNHlJ1aB

    Do you see anything I might be doing wrong?
    thx
    doug

  • Author
    Posts
Viewing 20 posts - 21 through 40 (of 57 total)
← 1 2 3 →
« 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