Forum Replies Created
-
AuthorPosts
-
Hi!
I’m not sure if this is possible with a child theme. I’ll ask Dude.
Best regards,
IsmaelNovember 27, 2013 at 5:54 am in reply to: adding social icons like the Kriesi site with a small non-fixed header #193694Hi awakeningthedivine!
You can add this on your custom.css or Quick CSS:
#main { padding: 159px 0 !important; }
What changes did you do on the theme? Did you add any css modifications?
Cheers!
IsmaelHey jazbird!
Yes, you can use html codes on the “Autorespond Text” field when using the Contact Form element. You can also use plugins like Contact Form 7 and Gravity Forms.
Cheers!
IsmaelHey jazbird!
Please edit the layer then go to Attribute. Give it a unique css class or id, example “awesome-layer”. Use media queries to hide it on mobile view. Add this on Quick CSS field:
@media only screen and (max-width: 767px) { .awesome-layer { display: none !important } }
This will hide all layers with “awesome-layer” css class attribute on mobile view.
Regards,
IsmaelHey Jorge!
What do you mean by “set the mega menu as dropdown”? Please watch this video on how to properly set up a mega menu: https://vimeo.com/channels/aviathemes/67651241
Cheers!
IsmaelHey!
Hi!
You can add this on your custom.css or Quick CSS to reduce the font size and padding of the bottom menu:
.bottom_nav_header.social_header .main_menu ul:first-child>li a { font-size: 11px; } .main_menu ul:first-child > li > a { padding: 0 11px; }
Cheers!
IsmaelRegards,
IsmaelHey!
Yes, you can remove the “Home” menu item on Appearance > Menus.
Regards,
IsmaelHey blueunderground!
Can you please post the flash code here? Did you switch to text mode when you insert the code? Embedded flash objects or movie should work properly on the theme but like you said they are not supported on iOS devices and that would be a problem.
Regards,
IsmaelHey!
Go to LayerSlider WP > Slide > Global Settings > Layers Container. Specify a specific width for it.
Cheers!
IsmaelHey!
It would have affected the post layout and other elements header because the selector “.entry-content-header” are being use on a lot of elements within the theme if I am not mistaken. Yes,that is exactly what it says “In portfolio-preview-content, change the width for entry-content header”. :)
Best regards,
IsmaelNovember 26, 2013 at 1:04 pm in reply to: how to reverse "next portfolio item" from left to right #193395Hi dulei07!
It should be in the correct order but if you want to reverse it, you can edit functions-enfold.php then find this code on line 341:
$entries['prev'] = get_previous_post($same_category); $entries['next'] = get_next_post($same_category);
Replace it with:
$entries['prev'] = get_next_post($same_category); $entries['next'] = get_previous_post($same_category);
Best regards,
IsmaelHey ovanes84!
Can you please give us a link to the website? Try to deactivate all plugins and increase the php memory limit, see if it fixes the issue: http://dailyblogging.org/wordpress/increase-wordpress-memory-limit/
Best regards,
IsmaelNovember 26, 2013 at 12:47 pm in reply to: Big Problem : Enfold does not work suddenly, please HELP Me my site is down #193384Hi!
Do you have the latest version of Enfold? Have you recently upgrade the WordPress installation? Please post the login details here as a private reply. Deactivate all plugins if possible, we don’t want to mess with your plugin settings. Also check if disabling the plugins fix the issue.
Regards,
IsmaelNovember 26, 2013 at 12:44 pm in reply to: Image Size Error at Partner-Grid in Internet Explorer #193382Hey!
Please add this on your custom.css or Quick CSS:
#top .avia-logo-element-container img { width: auto; } #top .avia-smallarrow-slider .slide-image, #top .avia-logo-element-container img { width: auto; }
Cheers!
IsmaelNovember 26, 2013 at 12:38 pm in reply to: How do you fix product default menu and page numbers that arent working? #193379Hey!
Please use this instead to remove the featured image:
.single .small-preview { display: none !important; }
The website seems to load properly on mobile devices including iPad when I check it here: http://responsinator.com/?url=http%3A%2F%2Fwww.interiorinnovations.com.au%2Ftest%2F
Cheers!
IsmaelHi agarkitekter!
Can you please give us a link to the website? We need to inspect it to give you a proper css solution. You can try this:
.portfolio-preview-content .entry-content-header { width: 200px; }
Cheers!
IsmaelHi!
Sorry but it is not possible yet. You can request it here: https://kriesi.at/support/topic/enfold-feature-requests
Cheers!
IsmaelHey disruptivevision!
Are you using the Small Fixed Header? You can edit js > avia.js, find this code:
var st = win.scrollTop(), newH = 0; if(st < el_height/2) { newH = el_height - st; header.removeClass('header-scrolled'); } else { newH = el_height/2; header.addClass('header-scrolled'); }
Replace it with:
var st = win.scrollTop(), newH = 0; if(st < el_height/1.5) { newH = el_height - st; header.removeClass('header-scrolled'); } else { newH = el_height/1.5; header.addClass('header-scrolled'); }
You can decrease the 1.5 value if you want a larger header when you scroll down the page. Please remove browser cache then reload the page a few times. You can also test it on another browser.
Regards,
IsmaelHi vmp68!
Please add this on your custom.css or Quick CSS:
.single-portfolio .page-thumb { display: none; }
Regards,
IsmaelNovember 26, 2013 at 10:09 am in reply to: changing the font of the titles on the accordian… #193330Hey earthyblue!
You can change the color using this on Quick CSS or custom.css:
.main_color .toggler { color: red; }
Regards,
IsmaelHey codemode!
If you want the featured image to show on pages, you need to switch to the Default Editor.
Cheers!
IsmaelHi xpoveda!
Where did you get the Mahalia font? I’ve search google but I didn’t find anything like that.
Cheers!
IsmaelHey Premanjali2!
Please post the login details here as a private reply. Also, check the Global Settings > Layers Container. Set it to 1140.
Cheers!
IsmaelHey!
Please do Devin’s instruction. Edit js > avia.js, find this code:
//activates the prettyphoto lightbox $(container).avia_activate_lightbox({callback:'avia_lightbox_callback'});
Replace it with:
//activates the prettyphoto lightbox //$(container).avia_activate_lightbox({callback:'avia_lightbox_callback'});
This should disable the lightbox entirely. Make sure to remove browser cache then reload the page or check the site on another browser. You can find the avia_hover_effect on the same file.
Cheers!
IsmaelHey dkiessling!
1.) Please increase the php memory limit: http://dailyblogging.org/wordpress/increase-wordpress-memory-limit/
2.) I hope the first solution fix the issue. Do you have any other plugins installed?
3.) Yes, it is possible. You can use the Quick CSS field to apply certain styling changes on the theme.
4.) Please switch to Advance Layout Builder then go to Media Elements. You can select different kinds of sliders like LayerSlider and Fullwidth Easy Slider.
Cheers!
IsmaelHi MichaelT1!
You can create a page using this shortcodes: http://codex.bbpress.org/shortcodes/
Create a register page using [bbp-register] and a login page using [bbp-login]. Create a menu item on Appearance > Menu.
Best regards,
IsmaelHi!
Please add this on your custom.css or Quick CSS:
#top .fullsize .template-blog .post-title { text-align: left; }
Best regards,
Ismael -
AuthorPosts