• 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

sdbroker

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 - 61 through 80 (of 90 total)
← 1 2 3 4 5 →
  • Author
    Posts
  • November 14, 2013 at 9:24 pm in reply to: Agency – Nav Menu doesn't show the subpages #73073
    sdbroker
    Member

    Buy default the Secondary menu is set on the style to not display sub-menu. You can read it on the theme's setup instructions. If you need sub-menu why don't use either the Primary or create a custom? or remove the display: none from the style.

    November 9, 2013 at 1:22 am in reply to: ShareDaddy #71832
    sdbroker
    Member

    Thanks for the suggestion Brad!

    I installed the Manual Control for Jetpack plugin and Jetpack to 3 sites using my info for WP.com so I think that fixed the issue I had. 🙂

    November 1, 2013 at 12:56 pm in reply to: NextGen Gallery Alternatives #70341
    sdbroker
    Member

    @Lisa Thank you very much Lisa! Got it!

    October 31, 2013 at 10:59 am in reply to: NextGen Gallery Alternatives #70138
    sdbroker
    Member

    Hi Lisa,

    Are you using the Lightbox Plus Colorbox plugin? I use it for a year or so on my son's site because of its feature to add video in addition to the images and I think it's pretty easy to use.

    I haven't figured out how to make it responsive though. You mentioned using % for the image sizes. I currently have all the fields blank on the settings and off course the images are not responsive. However the videos are. What percentages should I use to make the images responsive and should I do it on the settings or add @Media sections on the plugin's css?

    Thank you

    October 31, 2013 at 10:18 am in reply to: Agency Pro: Home-middle using only one post? #70129
    sdbroker
    Member

    Yes, it does, because on the functions.php file the image size is set for 380x380

    Try to change that on line 41 of the theme's function file to read:

    //* Add new image sizes
    add_image_size( 'home-bottom', 380, 150, TRUE );
    add_image_size( 'home-middle', 1140, 380, TRUE );
    October 30, 2013 at 9:33 pm in reply to: Agency Pro: Home-middle using only one post? #70044
    sdbroker
    Member

    Both home-middle & home-bottom use the same width from this one on line 1195:

    .agency-pro-home .featuredpost .entry {
    	background: none;
    	float: left;
    	width: 33.33333333%;
    }

    You need to change the width to 100% for only 1 post on the home-middle... BUT then if you want to also have posts on the home-bottom, you can also have only 1 post there.

    Did you try adding width: 100%; to .home-middle .featuredpost .entry and add a wider image (1140x380 or 1140xwhatever height you want)? That should work.

    October 30, 2013 at 1:21 pm in reply to: Agency Pro-Help with adding Pages to featured post #69966
    sdbroker
    Member

    @brook1979 Make sure that you add the additional entries to the main css & the @Media sections to the HOME-MIDDLE section for the formatting to work exactly the same as it works on the demo for the posts. Also make sure that you replace ALL (on main & @Media sections) the .featuredpost that you see on the HOME-MIDDLE section (DO NOT touch the home-bottom section which is for posts - unless you want to change both) with featuredpage. If you do that the formatting and the Schema works exactly the same as the demo for pages instead of posts.

    What's your site address?

    October 29, 2013 at 6:40 pm in reply to: Agency Pro Featured Pages #69805
    sdbroker
    Member

    There are 2 ways to do it. Both are explained here: http://www.studiopress.community/topic/agency-pro-help-with-adding-pages-to-featured-post/

    October 29, 2013 at 2:22 pm in reply to: Agency Pro-Help with adding Pages to featured post #69735
    sdbroker
    Member

    Tornado,

    Both ways work just fine. Sridhar's version deals with the widget instead of the featuredposts content while my version follows the original css by replacing ".featuredposts" with ".featuredpages" ONLY in the middle section.

    Neither version deals with the home bottom if you follow the instruction correct. I suggest that you compare the original CSS on the home bottom with whatever changes you have made to your style.css

    October 27, 2013 at 9:37 pm in reply to: Agency Pro-Help with adding Pages to featured post #69381
    sdbroker
    Member

    I accidentally found yesterday another alternative way to do it which I found to be a bit more responsive on the different media screens.

    1) Add this to your CSS around line 1205:

    .agency-pro-home .featuredpage .entry {
    	background: none;
    	float: left;
    	width: 33.33333333%;
    }
    
    .agency-pro-home .featuredpage img.entry-image {
    	margin: 0;
    }

    2) Then go to the .home-middle section, lines 1235, 1240, 1248, 1253 & 1257 and replace .featuredpost with .featuredpage on all of them. Do the same thing on the @Media section, lines 1870, 2019 & 2067.

    3) Add also this to the @Media 1180 section around line 1981:

    	.agency-pro-home .featuredpage .entry {
    		min-height: 380px;
    		width: 50%;
    	}
    

    4) and this on the @Media 680 around line 2054:

    	.agency-pro-home .featuredpost .entry {
    		min-height: 380px;
    		width: 100%;
    	}
    	
    

    5) Finally just drop the "Featured Pages" widget on the Middle section...

    October 27, 2013 at 5:01 pm in reply to: How to Display Submenu in 2 Columns instead of one? #69329
    sdbroker
    Member

    I thought about dividing them like you suggested (as a matter of fact that's how I have it on my other almost identical site), but for this site I prefer to have them show within just one hover from the parent menu. As long as it's possible though to be done in css as you said, sooner or later I'll figure it out! 🙂 I just need an idea on how to start...
    Thank you!

    October 27, 2013 at 4:06 pm in reply to: How to Display Submenu in 2 Columns instead of one? #69310
    sdbroker
    Member

    Hi Andrea,

    Here's the link to my site: http://www.alexiourealty.com
    I want to have about 20 or so pages on the subnav under "COMMUNITIES" on the main Header menu. When I had them there, the one-column subnav list is so long that runs down through the whole site, so besides looking awkward it does really work since the user has to scroll all the way down to see the whole list. I know that there are several plugins (Umber Menu, etc.) that can solve that, but I really like the menu that I have on the theme and I just wonder how it can be done using css to create a 2 or 3-column subnav.

    Thank you,
    George

    October 23, 2013 at 2:42 am in reply to: Shortcode for Simple Social Icons #68373
    sdbroker
    Member

    Ok! I changed both the height on the ul li and margin-top on the widget-area above that to:

    .site-header .widget-area {
        margin-top: 0.2rem;
    }
    
    .simple-social-icons ul li {
        margin-bottom: 0 !important;
    	height: 10px;
    }

    and it now looks GREAT! Thank you so much I'm happy with it now!

    If you don't mind a code question regarding the widget placement on front page. What's the CORRECT hook to place the home page widgets AFTER the home-featured widget:
    genesis_before_content_sidebar_wrap, genesis_before_content or something else?

    I have all of them that follow the theme's standard "home-featured" in genesis_before_content_sidebar_wrap. Is this ok?

    Thank you so much again for all your help!

    October 23, 2013 at 1:23 am in reply to: Shortcode for Simple Social Icons #68370
    sdbroker
    Member

    I found a closing "}" missing from one of he plugin's Media rules which fixed the "show-stopper" error! 🙂 I'll have to look at other ones that you pinpoint!

    Now the Simple Icons appear next to the "text" top menu, as you said! You are a GENIUS!

    After the Simple Icons got to the right of that text menu, there's a lot of empty space on the header between the "Custom Menu" and the top "text & icons" menu. Is that because of the Icon circles?

    Thank you so much!

    October 23, 2013 at 12:55 am in reply to: Shortcode for Simple Social Icons #68367
    sdbroker
    Member

    I think I found the location of that "show-stopper" error within my plugin's override css by moving up that

    body {
        display: none;
    }

    until I found the location... Thank you!

    October 23, 2013 at 12:44 am in reply to: Shortcode for Simple Social Icons #68366
    sdbroker
    Member

    You're right! After placing it at the end everything still appears. I changed themes momentarily and put it on the new theme and nothing appeared. Thank you so much for finding this!

    Could you please give me an example of what a "show-stopper" error is, so I know what to look for?

    Thank you again for finding this issue!

    October 23, 2013 at 12:12 am in reply to: Shortcode for Simple Social Icons #68364
    sdbroker
    Member

    Hi Sridhar,

    I added it and nothing changed. I believe that it'll only work correct if somehow either the plugin (through a shortcode) or its fonts (as the title of a link) gets called from within the text widget on that menu. 🙁

    October 22, 2013 at 11:12 pm in reply to: Shortcode for Simple Social Icons #68358
    sdbroker
    Member

    Ok, I dropped the plugin on the "header Right" box, aligned hem right and they now appear on the top right above that "text" menu. I'm trying to have them on the same line to the right of the "text" menu.
    Another way that I think it could work, is to add the links to the same text widget and then somehow to have those simple icon fonts called up to the link...

    October 22, 2013 at 10:51 pm in reply to: Shortcode for Simple Social Icons #68356
    sdbroker
    Member

    Hi Sridhar,

    That won't work because I'm using the custom menu to the "Header Right" widget. The menu just above that custom menu is just a text widget that I placed on the same Header Right" box and it displays just above the header menu as a top menu. I want to use a couple social icons from the Social Icons plugin to be placed on the right of that "text" top-menu. I believe a shortcode to call those icons will do the job. Dropping the plugin on that same "Header Right" box, puts the icons either above that "text" top menu if I have them aligned right or puts them almost next to the logo if I have them align center or left...

    October 22, 2013 at 10:13 pm in reply to: Shortcode for Simple Social Icons #68342
    sdbroker
    Member

    Hi Sridhar,

    Here's my site: http://www.alexiourealty.com but I moved the social icons from the header menu to the footer since the plug in puts them either above or below the rest of the top menu.

    BTW - I found a way to implement your "pages instead of posts" on agency concept article on the minimum theme and works like a charm. 🙂 Thank you for that!

  • Author
    Posts
Viewing 20 posts - 61 through 80 (of 90 total)
← 1 2 3 4 5 →
« Previous Page

CTA

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

Create a site with WP EngineShop for Themes

Footer

StudioPress

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