Forum Replies Created
-
AuthorPosts
-
June 7, 2013 at 4:40 pm in reply to: Display colored bar in menu when a submenu item is shown #123579
Hi,
You can add this on your custom.css or Quick CSS
.current-page-ancestor a > .avia-menu-fx {
visibility: visible;
opacity: 1;
}
.current-page-ancestor a > .avia-menu-fx .avia-arrow-wrap {
overflow: hidden;
display: block;
}Regards,
Ismael
June 7, 2013 at 4:56 am in reply to: How to remove translucent layer on post slider during hover #123372Hi,
Use this to remove the circle.
.image-overlay-inside {
display: none;
}Regards,
Ismael
June 6, 2013 at 9:13 am in reply to: How to remove translucent layer on post slider during hover #123370Hi,
You can add this on your custom.css or Quick CSS
.image-overlay {
background: transparent;
}If you want to remove the circle, use this instead.
.image-overlay {
display: none;
}Regards,
Ismael
Hi,
Edit footer.php then find this code on line 85
$kriesi_at_backlink = apply_filters("kriesi_backlink", " - <a href='http://kriesi.at'>Enfold Theme by Kriesi</a>");
You can change the value:
$kriesi_at_backlink = apply_filters("kriesi_backlink", " - <a href='http://www.myawesomewebsite.com'>My Awesome Website</a>");
Or you can remove it.
Regards,
Ismael
June 6, 2013 at 9:04 am in reply to: background color/image for a particular page (or pages) #123363Hi,
No, not possible with the Theme Options but you can do it on your custom.css or Quick CSS. You need to find the body class id of a specific page. If you are using Chrome, right click then click Inspect Element.
Then you can use this on your custom.css
.page-id-734 .main_color {
background-color: red;
}
.page-id-734 .alternate_color {
background-color: pink;
}The css above will only be applied on the page with the id .page-id-734.
Regards,
Ismael
Hi,
Edit config-layerslider/LayerSlider/js/admin.js. Remove everything then replace it with this http://pastebin.com/Jm8hcg1X
Regards,
Ismael
Hi,
The minimum is 2 but you can modify config-templatebuilder > avia-shortcodes > postslider.php, find this code on line 57
"subtype" => array( __('1 Columns', 'avia_framework' )=>'2',
Replace it with
"subtype" => array( __('1 Columns', 'avia_framework' )=>'1',
You need to recreate your post slider. Remove the existing one and create another.
Regards,
Ismael
Hi,
Can you give us a link to the page with the issue?
It is working fine on my end. This is the screenshot.
Regards,
Ismael
Hi,
Did the code above work? I did see the images when I use the css code.
Regards,
Ismael
Hi,
Please watch this video.
In order to create a Blog, just create a new page name it New Blog for example. Insert the Blog Post element, configure the options. Go to Enfold > Theme Options > Frontpage Settings, select your frontpage. Another setting will pop out that will allow you to choose the Blog page, select your New Blog page. Save changes. You can then configure your menus on Appearance > Menus.
Regards,
Ismael
Hi,
You can actually create a shop category page, using the woocommerce shortcode. Create a page then insert this on the Visual Editor.
[product_categories number="1"]
Add images on the “Add Featured Media” section.
Please hire a freelance developer to do it for you. :)
Regards,
Ismael
June 6, 2013 at 8:14 am in reply to: Great Theme! But Layer Slider is NOT working, Only showing [layerslider]? #121570Hi,
Go to Advance Layout Editor, look for the Media Elements tab. Insert the Layer Slider.
You can edit the slides on LayerSlider WP.
Regards,
Ismael
Hi,
I checked your website but I don’t see the menu overlapping the logo. Is this happening on an iPad?
Regards,
Ismael
Hi,
Are you talking about the LayerSlider? You can add a custom style on each layer.
background: rgba(0,0,0,0.5);
Regards,
Ismael
Hi,.
I can see your logo using safari. What safari version do you have? What OS?
This is the screenshot.
Let me tag the rest of the support team to check this out.
Regards,
Ismael
Hi,
You can use this instead. Mega menus have different ids.
.avia_mega_div.avia_mega2.six.units {
right: -360px !important;
}Regards,
Ismael
Hi,
This is actually a good plugin:
http://wordpress.org/plugins/post-types-order/
You can manually arrange your posts.
Regards,
Ismael
Hi,
You can follow this link:
https://kriesi.at/support/topic/wpml-only-flags-inline-sorting
Regards,
Ismael
Hi,
If you are using a 4 column porfolio, find this code on functions.php
$avia_config['imgSize']['portfolio_small'] = array('width'=>260, 'height'=>185 ); // images for portfolio 4 columns
Replace it with
$avia_config['imgSize']['portfolio_small'] = array('width'=>300, 'height'=>300 ); // images for portfolio 4 columns
Regenerate thumbnails using this: http://wordpress.org/extend/plugins/regenerate-thumbnails/
Regards,
Ismael
Hi,
Do you mean the Blog Grid Style? Suggested image size is 495×400. You can find the image size on functions.php.
$avia_config['imgSize']['portfolio'] = array('width'=>495, 'height'=>400 ); // images for portfolio entries (2,3 column)
Can you give us a link to your website?
Regards,
Ismael
Hi,
What kind of slider are you using? Easy Slider? Layer Slider?
Can you give us a link to your website?
Regards,
Ismael
Hi,
Open js > avia.js, go to line 537.
item.stop().css('display','block').animate({opacity:1},300);
Replace 300:
item.stop().css('display','block').animate({opacity:1},0);
Regards,
Ismael
-
AuthorPosts