Forum Replies Created
-
AuthorPosts
-
December 27, 2014 at 9:58 pm in reply to: Help Removing Terrible Padding on Enterprise Pro Theme #135437KristaMember
I don't think you need to do much. Wouldn't you just have to adjust the 40px padding on line 891:
.featured-content .entry-content {
padding: 40px;
}If you want to reduce padding more for the entry header on line 880:
.featured-content .entry-header {
border-bottom: 1px solid #ececec;
margin: 0;
padding: 30px 40px;
}I don't think adjusting these will have an impact on your mobile view at all.
KristaMemberCould you give a link to the website? Easier to help you that way 🙂
KristaMemberIn the functions.php file look for this code:
//* Add support for custom header
add_theme_support( 'custom-header', array(
'default-text-color' => '000000',
'header-selector' => '.site-title a',
'header-text' => false,
'height' => 90,
'width' => 380,
) );Change it to:
//* Add support for custom header
add_theme_support( 'custom-header', array(
'default-text-color' => '000000',
'header-selector' => '.site-title a',
'header-text' => false,
'height' => 116,
'width' => 223,
) );then in the style.css change line 1258 from:
.header-image .site-title a {
background-position: center !important;
background-size: contain !important;
float: left;
display: block;
min-height: 90px;
text-indent: -9999px;
width: 100%;
}To:
.header-image .site-title a {
background-position: center !important;
background-size: contain !important;
float: left;
display: block;
min-height: 116px;
text-indent: -9999px;
width: 100%;
}KristaMemberHere is a great article:
December 19, 2014 at 10:03 am in reply to: HELP! Lifestyle Pro – Different Background on Home Page Only #134901KristaMemberI agree with the above. Lifestyle Pro has a custom body class for the front page so you could also use body.lifestyle-pro-home
KristaMemberDo you have a url I can take a peak at?
KristaMemberOutreach Pro uses the Genesis Responsive Slider plugin: https://wordpress.org/plugins/genesis-responsive-slider/
It looks like you are using Genesis Slider plugin. If you switch it up to the right plugin it will fix your problem.
Take care,
November 28, 2014 at 11:00 pm in reply to: I am Using The Lifestyle theme and I would like to make the Header Full Width #133180KristaMemberAs always Sridhar has a great tutorial for this:
http://sridharkatakam.com/add-wide-header-lifestyle-pro/
Good luck!
November 14, 2014 at 10:48 am in reply to: Lifestyle Pro — Where's the space b/n the sidebars and footer? #131525KristaMemberYou need to make the make the priority lower than the footer widgets. For example:
add_action( 'genesis_before_footer', 'test_widget_section', 5 );
function test_widget_section() {genesis_widget_area( 'test-widget', array(
'before' => '<div class="testing"><div class="wrap">',
'after' => '</div></div>',
) );
}I used 5 which hooked it in before the footer widgets.
I hope this helps!
KristaMemberHey there,
The image is a background image, and the height is controlled by the margin-top line 485:
.minimum .site-tagline {
margin-top: 600px;
}Take care!
KristaMemberKristaMemberI used to use MAMP (for Mac) and recently switched to Desktop Server. They have a sweet little feature to deploy your local site to your live site once it's finished. If you have trouble, and you are a premium member they will do it for you or teach you how. Very much worth it, and the customer service is wonderful!
You could alternatively, use Susan's suggestion for working on a live sub-domain.
Krista
August 18, 2014 at 12:30 am in reply to: Agency Pro: Transparency for the Home Bottom, Footer 1, 2, 3 #119467KristaMemberHi Donald,
Change the opacity value to whatever you want, mine is just an example. See this article to learn more about opacity values:
http://www.w3schools.com/cssref/css3_pr_opacity.asp
Try this:
line: 1330 in your stylesheet
.home-bottom{
opacity: .5;
}line: 1600 in your stylesheet
.footer-widgets{
opacity: .5;
}Krista
KristaMemberHi Donald,
It is possible but you'll have to dig into some code if you are comfortable! Sridhar has a fantastic tutorial.
http://sridharkatakam.com/replace-reorder-add-new-icons-simple-social-icons/
Hope this helps!
Krista
KristaMemberHi Scott,
to line 1509 of Stylesheet
div.gform_footer input.button{
background: #0449cb
color: #fff;
font-weight: normal;
border: 1px solid #0449CB;
}Hope this helps!
Krista
KristaMemberHere is help with the Read More link.
As for the blog excerpts, try looking at Bob's tutorial on your theme under Content Archives:
http://bobwp.com/streamline-pro-child-theme-tutorial/
If this isn't what you want then a little bit of custom coding will be needed, or possibly tweaking the CSS
Not sure about the title not showing up.
KristaMemberDo you have a link possibly? I would be happy to take a look for you
KristaMemberHi,
The calendar can be added from the available widgets, and then be styled with CSS to your preferences.
Take care,
Krista
KristaMemberIf you can link to your website I would be happy to take a look.
Krista
KristaMemberThis might be helpful to you.
http://www.mattsaffiliatejourney.com/site-building/customizing-wordpress-comments-form-genesis-2-0/
🙂
Krista
-
AuthorPosts