LebCit
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Panoramic Theme–Editing the FooterForum: Themes and Templates
In reply to: [Founder] Turn off next/previous in postYou are most welcome @adrianciolea
SYA 🙂
Forum: Themes and Templates
In reply to: [Make] Only one menu/hide secondary menu?You are most welcome @leakforum
SYA 🙂
Hello @chilibird
When you have an issue, you should create a new support ticket !
This is not a scrollbar, it’s the boxed style of 2016.SYA 🙂
Forum: Themes and Templates
In reply to: Removing category button/tags from postsYou are most welcome !
SYA 🙂
Forum: Themes and Templates
In reply to: [Sela] SELA-Customize issuesOops I didn’t pay attention that you’ve added JetPack after the issue, sorry !
The JetPack error has nothing to do with your initial issue.
Try first to change your theme, take 2015, if the customizer is working backup your customization and remove Sela theme.
After that download to your computer a fresh copy of Sela and upload it then activate it in the backend.I think this should do the trick.
Please let me know if it’s working after that or not.SYA 🙂
Forum: Themes and Templates
In reply to: Keep button pressedHello @pdegelder
The example is using jQuery (JavaScript library) to toggle (change by adding or removing) the class of the button when it’s pressed and gives it the active class that is defined in CSS.
YOU SHOULD USE A CHILD THEME FOR YOUR PERSONAL CUSTOMIZATION OR EVERYTHING WILL BE REMOVED ON THE NEXT UPDATE OF YOUR PARENT THEME !To accomplish this try the following :
1- Create a js folder at the root of your child theme (same level as style.css) then create inside this js folder a .js file for example mybuttonclick.js and put the following inside it
( function( $ ) { $('button').on('click', '#mybutton', function() { $(this).toggleClass('active'); } } )( jQuery );This will tell the button that have an id of mybutton to add/remove the active class to it when it’s clicked.
2- You should now tell WP to call the js file so the function can do it’s work.
In your child theme functions.php file add the followingfunction mybutton_script() { wp_enqueue_script( 'mybuttonscript', get_template_directory_uri() . '/js/mybuttonclick.js', array( 'jquery' ), '', true ); } add_action( 'wp_enqueue_scripts', 'mybutton_script' );This will tell WP to grab the mybuttonclick.js file that is inside the js folder at the root of the theme and execute the function(s) that lives inside it.
3- Finally, in your child theme style.css put
.active{ background:#357EBD; color:#FFF }OF COURSE, you’ll have to create in your HTML a button with an id of mybutton so that the code works !
If you need further help, don’t hesitate.
SYA 🙂
Forum: Themes and Templates
In reply to: [Sydney] Highlighting menu items on scrollHello @ghassanalqazzaz
No need at all for jQuery, this can be done in CSS.
A link to your site would be great so we can help you.SYA 🙂
Forum: Themes and Templates
In reply to: Responsive Landing Page and MenuForum: Themes and Templates
In reply to: [GlowLine] NOT WORKINGYou are most welcome,
Don’t hesitate, tell me if i can help you further.
SYA 🙂
Forum: Themes and Templates
In reply to: [Sela] SELA-Customize issuesForum: Themes and Templates
In reply to: [ColorMag] Remove post categories front pageHello @ebfigueroa,
Give us a link to your site so we can see your problem and help you resolve it.
SYA 🙂
Forum: Themes and Templates
In reply to: [Omega] Mobile Logo Underlaps ContentHello @jesseetaylor,
Something is wrong with your theme, what changes have you made ?
I’m asking because on screen resize your menu is removed !
Also, I don’t know this theme but it seems that you are replacing a site title with a logo ?!
It’s easy to remove the logo, but this is not how this theme works, the menu should be visible on mobile and tablet, your’s is not !
I suggest first to remove your logo, replace it with a site title for example Ressources, if your menu works than the problem was the logo, if not, than you have made other changes…
I’ll help you make a resizable logo, but first let’s see your menu.SYA 🙂
Forum: Themes and Templates
In reply to: Removing category button/tags from postsHello @fitmommyfitfamily
First you should use a child theme or a custom CSS plugin for all your customizations OR all your personal custumization will disapear on the next update of the theme you are using.
So to achieve your goal, using a child theme or a custom CSS plugin use this :
.top-category { display: none; }SYA 🙂
Forum: Themes and Templates
In reply to: [GlowLine] NOT WORKING