Forum Replies Created
-
AuthorPosts
-
October 19, 2020 at 7:19 am in reply to: How to add custom CSS classes and HTML to a Genesis child theme? #501515SavvyProParticipant
Thanks for your response, Anita.
Oh yeah, I also use the CSS editor in the Customizer as well for testing, it’s awesome! I usually relocate the code to the style.css once I’m happy with the outcome in the CSS editor though, just my preference.
This was more of a general question for all themes, but the two I’m working on at the moment are here:
-
Essence Pro by StudioPress (https://my.studiopress.com/themes/essence/)
-
Aspire Pro by AppFinite (https://my.studiopress.com/themes/aspire/)
I’ve seen some pretty cool hamburger menu effects and wanted to know more about how to go that route. For instance, I’ve seen hamburger menus that transition from the standard three stacked horizontal lines to a cross and then back.
I was wondering how I could create such an effect using a Genesis child theme?
Thanks again.
March 11, 2020 at 2:52 pm in reply to: What CSS tools are available that can help produce a style.css? #497274SavvyProParticipantI use Mac as well and love Brew also. I have used Brew for doing Python work.
Anyway, since Bootstrap 4 uses the Sass preprocessor, could I just use Bootstrap then, or is using a full fledged framework like Bootstrap 4 to help build a child theme superfluous?
I am just trying to come up with the most efficient, productive, and quickest way I can get this done.
Thanks Victor
SavvyProParticipantThanks Victor.
I guess I could do that using my local dev environment which is DesktopServer and compare that to the live site.
SavvyProParticipantThat's not the title menu, it's the navigation menu and the search box is inline with it.
To remove it, you would follow the instructions here:
https://feastdesignco.com/how-to/remove-search-bar-from-navigation-menu/
January 2, 2020 at 11:39 am in reply to: Primary nav menu not showing up after moving to genesis_before_header area #495742SavvyProParticipantI finally got it to work!
It would be nice to know how I could use the Genesis Simple Hooks plugin to get the same effect though.
What code would I use to put in the genesis_before_header box to get the same effect I currently have now?
Thanks for your help
January 2, 2020 at 11:24 am in reply to: Primary nav menu not showing up after moving to genesis_before_header area #495741SavvyProParticipantI want to reposition the navigation menu to be in the genesis_before_header area which I was finally able to do. Apparently the menu was hiding behind the background image so I had to use z-index in following CSS to display it:
.nav-primary { position:fixed; background: #5271ff; top:0; right:0; left:0; z-index:99; }
I then had to move the header down a bit so the menu was not overlapping with it using the following CSS:
.site-header{ margin-top: 50px; }
However, now I am trying to get the links in the new menu location to work, but I am having trouble working that out.
Would you know how I may go about getting the menu's links to function again?
Thanks
January 1, 2020 at 4:14 pm in reply to: Primary nav menu not showing up after moving to genesis_before_header area #495732SavvyProParticipantDo I just add PHP code to the hook boxes? It seems to only take html code from what it appears, but does offer a php code checkbox.
Anyway, I have used Genesis Extender, but never Genesis Simple Hooks and I have tried to find articles on how to move the navigation menu, but cannot find anything.
You can direct me to some tutorials on how to go about doing this using the Genesis Simple Hooks plugin?
Thanks
December 11, 2019 at 7:14 pm in reply to: How to find the JS code that initiates the scroll to id function? #495457SavvyProParticipantThat's because I had just found it and besides, it was irrelevant since the primary concern is if there are tools that exist that can identify which .js file is responsible for a certain effect.
I can take this to stackoverflow, that's no problem, but wanted to ask here.
I am learning quite a bit, Anita.
Thanks
December 11, 2019 at 5:01 pm in reply to: How to find the JS code that initiates the scroll to id function? #495450SavvyProParticipantI know that, but there are several .js files in there and I wanted to know if there is a way to detect which specific file is controlling this effect using the Chrome Dev Tools.
I found the JS file, it's in the home.js file, but there must be a way to detect the file using web dev tools.
December 8, 2019 at 11:33 am in reply to: How to get the Cover Block to be responsive or remove it using media queries #495331SavvyProParticipantWill do!
December 8, 2019 at 10:49 am in reply to: How to get the Cover Block to be responsive or remove it using media queries #495329SavvyProParticipantOH WOW!
Okay, I get it now.
This is absolutely AMAZING!!
Thanks Anita!!
December 8, 2019 at 10:25 am in reply to: How to get the Cover Block to be responsive or remove it using media queries #495328SavvyProParticipantThanks for the response Anita.
So which one should I do, the Editor's Toolkit, or create two different blocks, or both?
I'm confused.
Thanks
October 3, 2019 at 6:11 pm in reply to: Menu item link to a front page widget area is not working #493853SavvyProParticipantSo, if you click on the Welcome menu item, it takes you to front-page-3?
It is not working for me on any browser, so I am not certain why it is for you, but not for me.
September 24, 2019 at 10:01 pm in reply to: Custom JavaScript Scroll to ID all of a sudden stopped working! #493711SavvyProParticipantStill didn't work.
I am going to reach out to the publisher of this theme.
September 20, 2019 at 1:35 pm in reply to: Custom JavaScript Scroll to ID all of a sudden stopped working! #493667SavvyProParticipantGRRRAAAAAAWWWWWWWW!!!!
Why isn't my IDE catching this?!!
I should know better, but dang it, I am in a hurry and working on a Masters, kids, dog, full time job, sick spouse, COME ON technology, you're supposed to be helping me here.
I will modify it.
Thanks Vic.
September 15, 2019 at 10:13 pm in reply to: Custom JavaScript Scroll to ID all of a sudden stopped working! #493580SavvyProParticipantThe code I added is what you suggested above to my savvypro-scrollTo-id.js file located in public_html/.
I added this code here:
<script> jQuery(document).ready(function ($) { "use strict"; //SavvyPro Custom Scroll to ID Script $('a[href*="#"]').on('click', function(e) { e.preventDefault() $('html, body').animate( { scrollTop: $($(this).attr('href')).offset().top, }, 500, 'linear' ) }) }); </script>
And then this is the code I put in my functions.php file:
function savvypro_adding_scripts() { wp_enqueue_script( 'savvypro-scrollTo-id-script', get_stylesheet_directory_uri() . '/js/savvypro-scrollTo-id.js', array( 'jquery' ), '1.0.0', true ); wp_enqueue_script('savvypro_scrollTo_id_script'); } add_action( 'wp_enqueue_scripts', 'savvypro_adding_scripts' );
September 11, 2019 at 3:06 pm in reply to: Custom JavaScript Scroll to ID all of a sudden stopped working! #493512SavvyProParticipantOne more question, should I just stop using the Genesis Extender plugin altogether then?
September 11, 2019 at 12:09 pm in reply to: Custom JavaScript Scroll to ID all of a sudden stopped working! #493507SavvyProParticipantApologies, I made the change on DesktopServer, not the actual website. I made the change now on the site, but I am now seeing these errors:
https://www.dropbox.com/s/2m1shprgnwz58dk/Screen%20Shot%202019-09-11%20at%2011.02.46%20AM.png?dl=0
September 5, 2019 at 5:39 pm in reply to: Custom JavaScript Scroll to ID all of a sudden stopped working! #493422SavvyProParticipantOk well, I have officially given up.
I love Genesis, but I think it is time for me to start moving on to static site frameworks like Hugo or some other JAMstack CMS like Contentful and use AWS instead of SiteGround.
This has just become way too exhausting for me to constantly keep putting up with. I do what all the published blog articles say to do, it doesn't work. I do what these forums say to do, it doesn't work.
Is it time to move on?
Is Genesis and WordPress dead?
September 3, 2019 at 1:25 pm in reply to: Custom JavaScript Scroll to ID all of a sudden stopped working! #493389SavvyProParticipantNo, this did not work still.
Not sure what the issue is.
-
AuthorPosts