• 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

rfmeier

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 584 total)
← 1 2 3 4 5 6 … 28 29 30 →
  • Author
    Posts
  • June 6, 2014 at 2:31 pm in reply to: Certering pricing Tables #108385
    rfmeier
    Member

    Rob,

    The stacking is due to display: block;. Set that to display: inline-block like I posted in the css above.


    Ryan Meier – Twitter

    June 6, 2014 at 2:27 pm in reply to: Certering pricing Tables #108382
    rfmeier
    Member

    Yes sir. In this case, floating causes more problems than it solves.


    Ryan Meier – Twitter

    June 6, 2014 at 2:21 pm in reply to: Certering pricing Tables #108379
    rfmeier
    Member

    Rob,

    Here is a screenshot. Centered elements


    Ryan Meier – Twitter

    June 6, 2014 at 2:20 pm in reply to: Certering pricing Tables #108378
    rfmeier
    Member

    Rob,

    The text-align attribute will center more than just text. Removing the float and setting the display to inline-block is the key.


    Ryan Meier – Twitter

    June 6, 2014 at 2:06 pm in reply to: Reduce font weight/bold font #108375
    rfmeier
    Member

    You are welcome. I am glad I could help.


    Ryan Meier – Twitter

    June 6, 2014 at 2:03 pm in reply to: Certering pricing Tables #108374
    rfmeier
    Member

    Rob,

    Here is what I came up with;

    /* style.css line ~2882 */
    .pricing-table{
    	width: 300px;
    	padding: 0;
    	list-style: none;
    	float: none; /* remove floats */
    	display: inline-block; /* set display to inline-block from inherit */
    	position: relative;
    	vertical-align: top; /* set vertical align to top */
    	text-align: center; /* make sure text-align is set to center */
    	background: #fff;
    	position: relative;
    	border: solid 1px #f1f1f1;
    	z-index: 9;
    	margin-right: 10px;
    	-o-transition: box-shadow .3s linear, opacity .3s linear;
    	-moz-transition: box-shadow .3s linear, opacity .3s linear;
    	-webkit-transition: box-shadow .3s linear, opacity .3s linear;
    	transition: box-shadow .3s linear, opacity .3s linear;
    }

    It may possibly help to set the parent .pricing-tables to text-align: center; , but I am not sure if it will really make a difference.


    Ryan Meier – Twitter

    June 6, 2014 at 1:57 pm in reply to: Reduce font weight/bold font #108372
    rfmeier
    Member

    Hello,

    I came up with this solution.

    /* style.css line ~686 */
    .entry-title {
    	font-size: 35px;
    	font-size: 2.2rem;
    	line-height: 1;
    	font-weight:  normal; /* set to normal font weight */
    }
    
    .entry-title a,
    .sidebar .widget-title a {
    	color: #686868;
    	font-weight: normal; /* set to normal font weight */
    }

    Your menu bar items had a font-weight of 300, which is pretty light. Were you able to fix those?


    Ryan Meier – Twitter

    June 6, 2014 at 1:51 pm in reply to: Lifestyle Pro Header Right Widget Issue #108370
    rfmeier
    Member

    Hello,

    Tossing out an idea.

    Since I am unaware of the development environment-- have you tried using a full url for the image? If you are on a page, lets say http://www.testsite.com/about. The image url would change to http://www.testsite.com/about/wp-content/images/prcc-header-right.png


    Ryan Meier – Twitter

    June 6, 2014 at 1:46 pm in reply to: Disable link and alt on the icons Post Formats #108369
    rfmeier
    Member

    You are welcome. I am glad I could help.


    Ryan Meier – Twitter

    June 6, 2014 at 11:20 am in reply to: Winning Agent Featured Listings on Home Page Clicking Problem #108335
    rfmeier
    Member

    Hello,

    Since the :hover event in css is just setting the elements to an opacity of 0, the elements still maintain their structure (Similar to using visibility: hidden). I was able to get this working in Chrome by removing the opacity declaration and add the display to none during the hover event.

    /* style.css line ~771 */
    .home .listing-wrap:hover span,
    .home .listing-wrap:hover a.more-link {
    	display:none;
    }

    Try it out. Confirm it works in the needed browsers.


    Ryan Meier – Twitter

    June 6, 2014 at 9:47 am in reply to: Style individual comment counts #108321
    rfmeier
    Member

    You are welcome. Good luck.


    Ryan Meier – Twitter

    June 6, 2014 at 9:44 am in reply to: Style individual comment counts #108319
    rfmeier
    Member

    Hello,

    Try this css within your style.css file.

    /* style.css line ~1548 */
    .entry-comments-link::before {
    	content: "\00a0"; /* empty space */
    	margin: 0 13px 0 2px;
    	margin: 0 1.3rem 0 0.2rem;
    }

    Ryan Meier – Twitter

    June 6, 2014 at 9:32 am in reply to: Disable link and alt on the icons Post Formats #108316
    rfmeier
    Member

    Hello,

    Since there is not a filter or action within the Genesis core callback, the default callback will have to be removed and a new custom callback will have to be attached in it's place. Try the code below;

    https://gist.github.com/rfmeier/8cbe9895612a9dff5a95


    Ryan Meier – Twitter

    June 5, 2014 at 8:15 pm in reply to: Adding Background Image to blog page #108270
    rfmeier
    Member

    Hello,

    Did you ever get anything to work? Do you have an example of the image you want on the background of the blog?


    Ryan Meier – Twitter

    June 5, 2014 at 8:10 pm in reply to: Hook or filter for tag #108269
    rfmeier
    Member

    Hello,

    The function Genesis uses to create the <html> element uses the WordPress function language_attributes(). This function uses a the filter 'language_attributes' before the attributes are added the the html element. You can hook into that filter and add your custom attribute.


    Ryan Meier – Twitter

    June 5, 2014 at 7:42 pm in reply to: Lining up subnav with nav #108265
    rfmeier
    Member

    Hello,

    The third level menu items (ul elements) have a static margin assigned to them, so if the link element padding changes across the menu the third level menus will be off.

    I was able to mock changes in Chrome to get good results.

    /* style.css line ~504 */
    .menu-primary li ul ul,
    .menu-secondary li ul ul,
    #header .menu li ul ul {
    	margin: -45px 0 0 220px;
    }

    This should hopefully take care of the issue or get you closer.


    Ryan Meier – Twitter

    June 5, 2014 at 4:06 pm in reply to: Style individual comment counts #108240
    rfmeier
    Member

    I took a quick look at the site. With a html inspector (using Chrome or Firefox) you will be able to see the widget's id attribute-- This is unique for the page. As an example, the large featured post widget element has the id of featured-post-18. You could like css like so;

    #featured-post-18 .comment-count {
         /* add your styling */
    }

    If you wanted to style all featured post widgets,

    .featured-content .comment-count {
        /* add your styling */
    }

    You could also probably target widget areas, which would most likely share styling between each other.

    I hope this makes sense. Throwing out some ideas.


    Ryan Meier – Twitter

    June 5, 2014 at 3:53 pm in reply to: Navigation CSS line below current page name #108235
    rfmeier
    Member

    Hello,

    There is padding that is pushing the link (which has a white background) over the blue line. It can be fixed within your style.css file.

    /* style.css line ~952 */
    .genesis-nav-menu a {
        color: #124E67 /* #617984; */
        display: block;
        padding: 20px;
        padding-bottom: 0; /* remove the bottom padding if the link */
        position: relative;
    }

    That should take care of the problem.


    Ryan Meier – Twitter

    June 5, 2014 at 3:45 pm in reply to: Style individual comment counts #108232
    rfmeier
    Member

    Hello,

    Does the site happen to be live? Could we get a link? You could probably use css as each widget has a unique css class name when rendered onto the page.


    Ryan Meier – Twitter

    June 4, 2014 at 9:09 am in reply to: 100% width genesis responsive slider help please! #108065
    rfmeier
    Member

    You are welcome. I am glad I could help.


    Ryan Meier – Twitter

  • Author
    Posts
Viewing 20 posts - 81 through 100 (of 584 total)
← 1 2 3 4 5 6 … 28 29 30 →
« 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