Forum Replies Created
-
AuthorPosts
-
TerryMember
Excellent!
TerryMemberMorning,
There are plugins to help filter widget content or your could code it in your functions.php.
Taking the plugin route, you could use the "Widget Logic" plugin to target widget content to specific pages.
Widget logic provides an area at the bottom of the widget to add logic to display or hide that widget. In your case, to display on the home page you'll add "is_home()" without the quotes.
Let us know if this helps. Please mark your issue as "resolved" if you're all set.
Regards,
TerryJuly 18, 2018 at 4:20 am in reply to: Where to find Essence Pro's genesis_comment_callback function? #221762TerryMemberMorning lvvvvvl,
You can add it to the end of your theme functions.php file.
If you use that reference, you'll want to edit the line in the mysite_comment_callback
from<?php echo get_avatar( $comment, $size = $args['avatar_size'] ); ?>
to
whatever size you want (ie, 201) like below<?php echo get_avatar( $comment, 201 ); ?>
Let us know how you make out.
Warm Regards,
TerryTerryMemberMorning,
To change the font size, you'll want to edit the style.css either directly or with the Customizer (Appearance => Customize => Additional CSS).
To determine the font you wish to change, inspect your css in the browser following Victor's post.
Let us know how you make out. If this helps resolve your issue please mark it "Resolved" or "Closed."
Terry
TerryMemberHi,
If you're comfortable editing your child theme style.css, add the following code before the media queries (note ">" should be the greater than sign):
.genesis-nav-menu > .menu-item-has-children > a:after { color: #ddd; content: "\f107"; font-family: fontawesome; padding: 0 0 0 8px; display: inline-block; } .genesis-nav-menu .sub-menu > .menu-item-has-children > a:after { color: #ddd; content: "\f105"; float: right; font-family: fontawesome; padding: 0 0 0 8px; display: inline-block; }
Otherwise add it in the customizer (Appearance - Customize - Additional CSS) to add the caret.
Please let us know how you make out. If this helps resolve your issue, please mark it 'Resolved' or 'Closed.'
Terry
TerryMemberAfternoon Kelly,
Using 'Show Content Limit' with a numeric limit in your Featured Post will display 'Read More.'
You'll find more info on customizing the link here.
Hope that helps.
Terry
TerryMemberMorning John,
This may help you out.
Around line 417 of your functions.php file you'll find the code that's removing your entry_footer.
// Removes the entry footer. remove_action( 'genesis_entry_footer', 'genesis_post_meta' ); remove_action( 'genesis_entry_footer', 'genesis_entry_footer_markup_open', 5 ); remove_action( 'genesis_entry_footer', 'genesis_entry_footer_markup_close', 15 );
You'll want to remove that and then maybe add the following filter to format as you wish:
// Customize entry meta footer add_filter( 'genesis_post_meta', 'update_post_meta_filter' ); function update_post_meta_filter( $post_meta ) { $post_meta = '[post_categories] [post_tags]'; return $post_meta; }
Let us know how you make out and if this takes care of it, please mark "Resolved."
Terry
June 27, 2018 at 5:29 am in reply to: Using Elementor to edit front page of digital pro theme #221150TerryMemberGood Morning NandreiS,
You may be better served checking out the Elementor site for assistance with their Page Builder. We're volunteers here to help with Genesis.
Terry
June 26, 2018 at 5:46 am in reply to: Default Genesis Three Coium Footer Widget For One Page Only #221134TerryMemberMorning,
Brad has a great resource on footer/footer widgets that may help you out.
You can change the conditional to show the footer widgets or not show the footer widgets on pages as you would like.
Hope this helps to resolve your issue. If you're all set, please mark your post resolved.
Terry
TerryMemberHi Jeff,
You can inspect the css and change the color property of your font. Victor's post on using your browsers inspector is helpful introduction.
You'll find more details on the color property here.
To actually make the change involves editing your style.css or adding css in the Customizer (Appearance=>Customize=>Additional CSS).
If you're comfortable editing your css, on or around line 165 in your style.css change the color property to your color choice:
body { background-color: #fff; color: #777; font-family: 'Lato', sans-serif; font-weight: 300; line-height: 1.625; }
Hope that helps.
June 22, 2018 at 5:51 am in reply to: Magazine Pro: Add space between content and right sidebar? #221068TerryMemberVictor has a post on using your browser tools to inspect your css (and to try out your changes before committing them to code) here. The browser tools are so handy.
Like everything code, there's at least a few ways to get this done. Changing the content width is one way.
Once you get into your favorite browser inspector, you can play with the .content width to see what you like. You'll note that the width changes with screen size, so you'll need to make the change in a couple spots by editing your style.css file on or around lines 626 and 1977.Let us know how you make out and please mark this as resolved or closed when you're all set.
TerryMemberThis may create a duplicate post but the original isn't showing on my screen...
** if the great than sign is displaying as > sorry it's a greater than sign**The change will require editing the style.css if you're comfortable with that, or adding css to the Customizer.
For the style.css edit, on or around line 1489 you'll change the height.
from.site-header &gt; .wrap { position: relative; display: -ms-flexbox; display: flex; -ms-flex-align: center; align-items: center; -ms-flex-pack: justify; justify-content: space-between; -ms-flex-wrap: wrap; flex-wrap: wrap; height: 60px; height: 6rem; transition: height 0.3s ease; }
to
.site-header &gt; .wrap { position: relative; display: -ms-flexbox; display: flex; -ms-flex-align: center; align-items: center; -ms-flex-pack: justify; justify-content: space-between; -ms-flex-wrap: wrap; flex-wrap: wrap; height: 100px; height: 10rem; transition: height 0.3s ease; }
or you can add the css to the Customizer. In the WP Admin Appearance=>Customize=>Additional CSS
.site-header &gt; .wrap { height: 100px; height: 10rem; }
Let us know how you make out and mark the post "Resolved" when you're all set.
TerryMemberCorporate Pro is a mobile first theme which means the css is written for a smaller screen first.
If you're comfortable editing the style.css, on or around line 1489 you'll be working here:
.site-header > .wrap { position: relative; display: -ms-flexbox; display: flex; -ms-flex-align: center; align-items: center; -ms-flex-pack: justify; justify-content: space-between; -ms-flex-wrap: wrap; flex-wrap: wrap; height: 60px; height: 6rem; transition: height 0.3s ease; }
to change the height to:
height: 100px; height: 10rem;
If you're not comfortable editing the style.css, add the css to Appearance=>Customize=>Additional CSS
.site-header > .wrap { height: 100px; height: 10rem; }
Victor has a great post here on using the browser inspector to inspect and try out css changes. You can also see the different responsive views or different screen sizes in the inspector.
Let us know how that works for you and mark it Resolved if you're all set.
TerryMember1. The mobile views in developer tools will show you the different screen sizes. I love it for testing.
2. Using the inspector, you can find where the line is in the css and remove it.
TerryMemberHi,
If you'd like to change the widget title tags Sridhar has a great post on that.
Brad has a great post too.
Hope this helps.
TerryMemberHi,
1. Visit Brad's page on removing titles.
2. Visit Victor's page to learn about using your browser's inspection tool to inspect and try-out css changes before editing your style.css or making the change via the Customizer. In the Customizer, it's Appearances=>Customize=>Additional CSS to make changes within the WP Admin. If you're comfortable editing style.css, .content is around line 638 of your style.css.
Hope that helps.
June 16, 2018 at 4:32 am in reply to: Move menu in header right in Latest Genesis Sample Theme to above the header #220883TerryMemberHi eno,
You'll need to edit the functions.php & style.css to move the menu. If you're comfortable editing files in your theme...
functions.php. On or around line 225 replace the following
// Repositions primary navigation menu. remove_action( 'genesis_after_header', 'genesis_do_nav' ); add_action( 'genesis_header', 'genesis_do_nav', 12 );
with
// Repositions primary navigation menu. remove_action( 'genesis_after_header', 'genesis_do_nav' ); add_action( 'genesis_before_header', 'genesis_do_nav' );
and then in the media query in the style.css (on or around line 1443) remove/restyle the header positioning/style on desktop views.
1443 .site-header { 1444 position: fixed; 1445 width: 100%; 1446 z-index: 9999; 1447 }
Hope that helps.
TerryMemberHi TJ,
You'll want the page template set to "Recipe Index."
Feast Design provides tutorials and support here.
Hope that helps.
TerryMemberYes, it's not working for me either. I didn't understand the problem.
This community is manned by volunteers, please contact StudioPress support for assistance on this.
Let us know how you make out.
June 7, 2018 at 6:12 pm in reply to: Create 4 Column Widget Area After Footer In Genisis Life style Pro #220649 -
AuthorPosts