Forum Replies Created
-
AuthorPosts
-
Susan NelsonParticipant
Theme documentation for WP Engine users is available at https://my.wpengine.com/themes. Click the "Documentation" link next to the "Download" link to access.
March 24, 2015 at 9:48 am in reply to: WooCommerce and News-Pro theme – Problems with quantity field #145478Susan NelsonParticipantYou're very welcome, Dan! 🙂
March 24, 2015 at 3:57 am in reply to: WooCommerce and News-Pro theme – Problems with quantity field #145436Susan NelsonParticipantThere's a plugin mentioned in this thread that might help: https://wordpress.org/support/topic/no-more-quantity-selector-after-update
March 14, 2015 at 4:56 am in reply to: Is it possible to use Genesis eNews Extended as a contact form? #144377Susan NelsonParticipantHello!
No, the eNews Extended widget is used only for subscribing your visitors to a mailing list. You can use a plugin like Ninja Forms to set up a contact form and then use their widget to add the form to your sidebar or other available widget area.
I hope this helps!
Susan NelsonParticipantHi there,
You can display a summary instead of the whole blog post by going to Genesis > Theme Settings > and then scrolling down to the Content Archives section.
If you select Display post content with a character limit of 0, you can use the <!--more--> tag in the blog post to display a "Read More" link on the home and archive pages. And if you select Display post content with a character limit (of any number), a "Read More" link will automatically appear on the home and archive pages.
Susan NelsonParticipantHi there,
I posted in your other thread about how to move the navigation up a little bit so it's centered vertically (remove the widget title from the custom menu widget).
As far as increasing the font size and keeping the links on one line, the only other option you have is to reduce the size of your logo image (crop the image very close to the text and leave no extra spaces on the sides). Then you can reduce the width of this section of the style.css file:
.header-image .site-title > a {
background-size: contain !important;
display: block;
height: 50px;
text-indent: -9999px;
max-width: 360px;
}Doing this may allow you to increase the width of .site-header .widget-area so you can increase the font size a little bit.
Note, if you change the width of the site title, you'll also need to change the width in this section of the functions.php file:
//* Add support for custom header
add_theme_support( 'custom-header', array(
'width' => 360,
'height' => 70,
'header-selector' => '.site-title a',
'header-text' => false,
) );I hope this helps!
March 1, 2015 at 4:09 am in reply to: Parallax Pro, Navigation menu is lower than it was before? #142705Susan NelsonParticipantHello!
If you remove the widget title from that custom menu widget, the links will move back into place.
Susan NelsonParticipantYou're very welcome! 🙂
Susan NelsonParticipantTry going to Users > Your Profile > User Permissions and make sure the box is checked for "Enable SEO Settings Submenu?"
Susan NelsonParticipantHi Caroline!
Are you using a self-hosted version of WordPress or is your site hosted at WordPress.com (if it is, your url will include wordpress.com)? If your site is hosted in WordPress.com, then you won't be able to use the StudioPress themes, unfortunately. If that's the case, you can contact support and request a refund for your purchase if you're not ready to move to a self-hosted WordPress site.
If you are, in fact, using a self-hosted version of WordPress, then you should see a button at the top of the Appearance > Themes page that says Add New. After you click that button, you'll be taken to a new page where you'll see another button at the top that says Upload Theme.
I hope this helps! Please let me know if you have any questions. 🙂
Susan NelsonParticipantThanks, Brad! That worked.
February 17, 2014 at 6:24 am in reply to: Add unique header images as background in page titles #90735Susan NelsonParticipantYou're welcome! 🙂
Susan NelsonParticipantYou're very welcome! 🙂
I don't know of a comprehensive tutorial, but you can always check these to find code snippets you might need:
http://my.studiopress.com/tutorials/
http://my.studiopress.com/docs/hook-reference/http://sridharkatakam.com/ - This gentleman posts tons of great tutorials on his site. Definitely bookmark this one. 🙂
Hope this helps!
Susan NelsonParticipantHi,
Here's a great tutorial to check out. http://sridharkatakam.com/adding-horizontal-opt-form-genesis/
(His whole site is a gold mine 🙂 )
February 16, 2014 at 12:26 pm in reply to: Add unique header images as background in page titles #90623Susan NelsonParticipantHi,
You should be able to use a custom body class to do it. The place to add them is below the Layout Settings in the page editor. So, for example, you could add a class named about to your About page and then do something like this to add a background:
.about .entry-title {
background: url(images/background.png) 0 0 no-repeat;
}I hope that helps!
Susan NelsonParticipantHi,
Do you mean you'd like to change the height of the header? If so, look for this in style.css:
.site-header {
background-color:#FFFFFF;
min-height:150px;
}And change the min-height to the correct value.
Let me know if you have questions. 🙂
Susan NelsonParticipantHi,
In your style.css file, look .site-header with code that looks something like this:
.site-header {
background-color: #FFFFFF;
background-position:initial initial;
background-repeat:initial initial;
border: 0 solid #DDDDDD;
clear: both;
min-height: 100px;
}Change min-height to the correct value.
Let me know if you have questions. 🙂
Susan NelsonParticipantHi Daniel,
You can access your site with an FTP or by going through your host's cpanel. You can then upload a fresh copy of the functions.php file (the one that originally came with your theme) to restore your site.
I always recommend that you never edit your functions.php file through the dashboard because one little mistake can take down your whole site. It's better to use an outside code editor and then upload your changes with an FTP.
Let me know if you have questions. 🙂
January 14, 2014 at 3:59 pm in reply to: Beautiful Pro — Adjusting Title Logo Size and Header Menu #85217Susan NelsonParticipantYou'll probably need to remove the floats from the logo area and widget area in the responsive section of the css. You'll also need to add auto margins to the left/right sides. And in the responsive section, you'll have to redeclare the top margin of the widget area so it's not so spaced out.
January 13, 2014 at 5:29 pm in reply to: Beautiful Pro — Adjusting Title Logo Size and Header Menu #85084Susan NelsonParticipantTo make the menu show to the right of the logo, you'll need to start with adjusting the size of the header right widget area.
.site-header .widget-area
But it's still going to be tight. Perhaps you can make the logo a bit smaller or you can adjust the padding on the menu items to make everything fit.
Thanks for the font info. So pretty!
-
AuthorPosts