Forum Replies Created
-
AuthorPosts
-
tussle
MemberThanks!
Very strange, I replaced the one line with yours, it worked, then changed to what I had, that worked too. I don't know the issue. I cleared cache multiple times. But many thanks.I did not know about pre tags for code, appears fine in my browser but made note. I will test a few more code examples and hope they work. Thanks.
jQuery(document).ready(function($) { $(window).scroll(function(){ $('.container p').each(function(){ var scrollTop = $(window).scrollTop(), elementOffset = $(this).offset().top, distance = (elementOffset - scrollTop), windowHeight = $(window).height(), breakPoint = windowHeight*0.9; if(distance > breakPoint) { $(this).addClass("more-padding"); } if(distance < breakPoint) { $(this).removeClass("more-padding"); } }); }); });
//* Enqueue scroll rotating script add_action( ‘wp_enqueue_scripts’, ‘enqueue_scroll’ ); function enqueue_scroll() { wp_enqueue_script( ‘scroll’, get_stylesheet_directory_uri() . ‘/js/scroll.js’, array( ‘jquery’ ), ‘1.0.0’, true ); }
tussle
MemberIf your issue is filtering through a lot of code you might want to use a plugin like this ( if much of your code is only for specific pages).
https://wordpress.org/plugins/page-specific-stylesheets/
You can also use a custom css add on for changes - so it's like having 2 stylesheets - you only refer to the one you need.
tussle
MemberYou wrote:
I’m totally OK with whatever way StudioPress mentions browser compatibility,The initial question was why there is no browser compatibility mentioned.
Themeforest has it's issues, but there are developers who have sold over 100,000 copies of one theme, they have the resources to check. I don't want to purchase a theme though with 50 other uses or features that I won't use.
Seems HTML5 is they key ingredient needed for cross browser, goes back to IE9, then FF, Chrome and mobile is taken care of.
I would stick to a theme with HTML5.tussle
MemberThanks
I wondering why it's just not listed. I guess they're expecting people to test it? Not sure. I've seen Themes on Themeforest and they explicitly state the versions in FF, CH, IE rather than, works in all major browsers.Maybe we're looking at different themes but I would say IE9+ is more common - which is fair. Farther back the user base is too small. Thx.
tussle
MemberHere is the solution for preview full screen for distraction free writing. Thanks to Alex King.
href="https://wordpress.org/plugins/fullscreen-preview-button
tussle
MemberThanks Ren.
So I just copy the script above into a .php file as you stated on your post, then upload the 2 files making sure they are referenced correctly in the script (per your post), then upload the .js and .css file? How do I activate the code then?
tussle
MemberAnother option is to just move the Publish bar above the TinyMCE toolbar.
I am trying to drag the Preview Button or Publish bar above the Tiny bar but it doesn't move.
I tried to go into post.php to find the code but it wasn't a simple cut and paste.This is what I would like to move higher:
http://i61.tinypic.com/2qjiq6d.jpg
Thanks
tussle
MemberThanks Ren!
That's great - I will follow the steps and code. Will also make a payment on your site - a few hot chocolates :/Thanks.
tussle
MemberThanks but it's beyond my skill right now. I followed the
Can't justify paying $67 for a piece of code on the WPsites.net site - didn't realize they allow sales solicitations here - haven't seen that before on other boards. There should be full disclosure they are selling items. Oh well.
I'll keep looking, hopefully something will pop up.
tussle
MemberThanks Ren - I tried to get that working for an hour, followed directions exactly, it didn't work. Left side showed 2 lines, center worked. It didn't say where to place sidebar.php files, I placed them in Genesis folder where the other .php files were (such as header.php) then child folder, still didn't work. Wonder if it's due to the older version (that was 2 years ago).
Looking at Brad's page it has the steps that seem easier, just no code.
tussle
MemberThanks for the link - but there isn't any code there, just an explanation of what can be done.
Maybe I missed something?
Thanks
tussle
MemberFor a start try these themes from PWD.
http://pwdtechnology.com/products/
You'll get excellent support.A full list of genesis child themes is here:
https://genesisthemes.ca/Be careful you don't buy a theme from authors who sell but do not support or provide help (like Appfinite - forum is never responded to). Check the authors website.
-
AuthorPosts