wpimran
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Enigma] Sub menu stack and cant access to parent menuHi,
use following code in Enigma Theme\js\menu.js file on line number 53 before init() function
jQuery(".dropdown-menu").mouseleave(function(){ jQuery(".dropdown").removeClass("open"); }); jQuery(".nav .dropdown-toggle").click(function () { window.location = jQuery(this).attr('href'); });
Thanks.
Forum: Themes and Templates
In reply to: [Enigma] Social MediaHi Cartmell,
Did you enabled social media icons from Theme Options >> Social Options?
ThhanksForum: Themes and Templates
In reply to: [Enigma] Portfolio on homepage doesn't show contentHi,
open your style.css file and go on line number 2170,you will found following line.scrollimation.fade-right { opacity: 0; .... .... }
Just change opacity from 0 to 1,and save the changes.
Thanks
Forum: Themes and Templates
In reply to: [Enigma] Client SectionHi ralcocer,
We are not allowed to offer support assistance here.
Please ask quires over premium support forum.
ThanksForum: Themes and Templates
In reply to: [Enigma] archives in another sideYou are welcome ??
Forum: Themes and Templates
In reply to: [Enigma] FooterHi ralcocer,
You can separate theme using ‘|’.
Theme Options >> Footer Option in Footer customization Field append ‘|’.e.g.
Footer customization? 2015 Enigma Theme |
Thanks.
Forum: Themes and Templates
In reply to: [Enigma] archives in another sideHi,
If you don’t want sidebar in your page you can select it Full-Width Page template from page attributes.
see screenshot.
screenshot
Thanks.Forum: Themes and Templates
In reply to: [Enigma] how can i make static home page multi-language?Hi ,
To make front page static
Go to Theme Options and uncheck the Home-Page or Custom Page check box and save the changes.Now got to Settings >> Reading, select the page you want to show on front page from Front page: list box,
select Post Page in which you want to show all your posts.
save the changes.Thanks.
Forum: Themes and Templates
In reply to: [Enigma] jquery errorHi,
Plz share your site url
ThanksForum: Themes and Templates
In reply to: [Enigma] archives in another sideHi,
You want to hide Archives from sidebar?
If yes, use following css in your theme options Custom Css Editor:-.enigma_sidebar_widget{ display:none; }
Thanks
Forum: Themes and Templates
In reply to: [Enigma] Social Media URL – new pageHi,
There is no option In Theme Options to open social media links in new tab, but
You can achieve this using folloing jQuery:
jQuery('.social li a').attr('target','_blank');
Paste this code in /js/enigma-footer-script.js file and save the changes.
Thanks.
Forum: Themes and Templates
In reply to: [Enigma] remove slider titlesHi,
Use following css in Theme Options Custom Css Field:.carousel-text{ display:none; }
Thanks
Forum: Themes and Templates
In reply to: [Enigma] how to remove the "Latest post" on pagesHi,
use following css in Theme Options Custom Css Field
1. To remove the latest blog section from home page-.enigma_blog_area{ display:none; }
2. To remove Footer widget area-
.enigma_footer_widget_area{ display:none; }
3. To make navigation bar smaller-
.navbar-collapse{ margin-top:10px; margin-bottom:10px; }
Thanks
Forum: Themes and Templates
In reply to: [Enigma] Scroll when Page Builder plugin is being usedHi,
I didn’t see any scroll bar on your site.
Have you uninstalled the plugin?Thanks
Forum: Themes and Templates
In reply to: [Enigma] Bottom menuHi,
You mean footer widget area?
use this css in Theme Options Custom Css Field:.enigma_footer_widget_area{ display:none; }
Thanks