Forum Replies Created
-
AuthorPosts
-
Hi!
@bluecafe: Thanks for helping! :)
@tvgverlag: Glad it’s working now! If you have more questions, feel free to open a new thread. :)Cheers!
IsmaelHey!
Please try this:
.avia-image-container-inner .avia_image:before { content: ''; border-radius: 0; background-image: url(https://kriesi.at/wp-content/themes/kriesi/images/logo.png); background-size: contain; background-repeat: no-repeat; background-position: 50% 50%; top: 0; left: 0; z-index: 10000; display: block; width: 100%; height: 100%; position: absolute; }Best regards,
IsmaelHey!
I’m sorry but the page’s header is not set to transparent header. Please edit the page, look for the Layout > Header visibility and transparency option. Set it to transparent header. http://aventori.ws/tawu_2015/news/
Best regards,
IsmaelHey Milan!
Thank you for using Enfold.
It’s possible to add css modifications in the General Styling > Quick CSS field.
1.) Use this in the Quick CSS field if you want to add a border:
.av-main-nav .sub-menu { border: 1px solid red; }2.) This is for the background of each menu items:
#top .av-main-nav ul a { background: yellow; }Instead of yellow, add the url to the background image.
http://www.w3schools.com/cssref/pr_background-image.asp
http://www.w3schools.com/css/css_background.asp3.) And this to add an arrow or bullet:
#top .av-main-nav ul a:before { content: ''; width: 0; height: 0; border-top: 5px solid transparent; border-bottom: 5px solid transparent; border-left: 5px solid green; margin-right: 5px; float: left; top: 5px; position: relative; }Cheers!
IsmaelOctober 27, 2015 at 10:51 am in reply to: The space between edge of the boxed layout and edge of the browser. #525389Hey ilkbaharkunduzu!
Thank you for using Enfold.
If you want to decrease the side spaces, add this in the Quick CSS field:
.responsive .boxed#top, .responsive.html_boxed.html_header_sticky #header, .responsive.html_boxed.html_header_transparency #header { width: 1315px; max-width: 98%; }Set the max-width to 100% if you want to remove the space completely.
Cheers!
IsmaelOctober 27, 2015 at 10:48 am in reply to: Strange rendering of Masonry gallery Featured on Iphone 6 #525385Hi!
Adjust the css media query coverage:
@media only screen and (max-width: 1024px) { .av-fixed-size .av-masonry-entry .av-inner-masonry-sizer { padding-bottom: 150%; } }If it is a retina display, use this:
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) { .av-fixed-size .av-masonry-entry .av-inner-masonry-sizer { padding-bottom: 150%; } }Adjust the value if necessary.
Cheers!
IsmaelHi!
The 300 weight version is already included when you select the Open Sans font. Try to modify the font weight with this:
body, body p { font-weight: 300; }Cheers!
IsmaelHey!
I can’t access the site:
HTTP ERROR: 504I’m not sure what @basilis did but maybe you’re not using the correct vimeo url. The vimeo url should look something like this:
http://vimeo.com/1084537Anyway, glad it’s working now.
Cheers!
IsmaelOctober 27, 2015 at 10:02 am in reply to: Replace Masonry Gallery with Easy Slider in mobile view #525374Hey!
Please modify the config-templatebuilder > avia-shortcodes.php > masonry_gallery.php file. Look for this code around line 267:
$atts['container_class'] = "av-masonry-gallery {$custom_class}";.. replace it with:
$custom_class = !empty($meta['custom_class']) ? $meta['custom_class'] : ""; $atts['container_class'] = "av-masonry-gallery {$custom_class}";The custom class should work after that.
Cheers!
IsmaelHey!
Glad you made it work! If you have more question at this time, please feel free to open a new thread.
Best regards,
IsmaelHey!
What content are you trying to add? Please post the content on pastebin.com, we would like to check it. The second accordion on the test page works OK.
Regards,
IsmaelHey!
Thank you for using Enfold.
Please edit includes > loop-search.php, look for this code around line 40:
<?php the_time('d M Y'); ?>.. replace it with:
<?php if(get_post_type($the_id) == "tribe_events") { the_event_start_date($the_id); } else { the_time('d M Y'); } ?>Best regards,
IsmaelOctober 27, 2015 at 8:28 am in reply to: Overlay Offset First Hover, On Second It's As Expected #525354Hi madebetter!
Thank you for using Enfold.
I’m not really sure why it fails to calculate the initial position of the image overlay on first hover. Try to remove the default image overlay then use this instead:
.listing-thumbnail .image-overlay { display: none !important; } .listing-thumbnail:hover a:before { content: ''; background: #fff; opacity: 0; width: 100%; height: 100%; z-index: 1000; display: block; position: absolute; webkit-transition: opacity 0.4s ease-in-out; -moz-transition: opacity 0.4s ease-in-out; transition: opacity 0.4s ease-in-out; border-radius: 100%; } .listing-thumbnail:hover a:before { opacity: 0.7; } .listing-thumbnail:hover a:after { content: "\E869"; font-family: 'entypo-fontello'; opacity: 0.5; -webkit-transform: rotate(0deg) scale(1); transform: rotate(0deg) scale(1); -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%); } .listing-thumbnail a:after { position: absolute; border-radius: 100%; background: red; height: 80px; width: 80px; left: 50%; top: 50%; z-index: 1000; text-align: center; color: #fff; content: ""; font-size: 18px; font-weight: normal; opacity: 0; line-height: 80px; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%); webkit-transition: all; -moz-transition: opacity 0.4s ease-in-out; transition: all 0.4s ease-in-out; border-radius: 100%; -webkit-transform: rotate(-175deg) scale(0.2); transform: rotate(-175deg) scale(0.2); }You can adjust the red and white background to something else.
Cheers!
IsmaelHi!
Thank you for using Enfold.
You need to modify the 404.php and includes > error404.php file. If you want to redirect the 404 page, use a plugin like this:
https://wordpress.org/plugins/all-404-redirect-to-homepage/
https://wordpress.org/plugins/404-redirected/Or add a redirect rule in the .htaccess file.
Best regards,
IsmaelOctober 27, 2015 at 7:43 am in reply to: Responsiveness not working well for Tablet Portrait and Landscape view #525349Hey!
Thank you for using Enfold.
Are you referring to the previous and next navigation? Unfortunately, you can’t resize it via css because the navigation is image-based. You have to modify the layer slider skin: http://www.sasserinvestments.com/site/wp-content/themes/enfold/config-layerslider/LayerSlider/static/skins/fullwidth/skin.png
If possible, please don’t bump the thread because it will push it back to the last of the queue and we won’t be able to answer it immediately. Thank you.
Best regards,
IsmaelHey!
1.) You have this code in the Quick CSS field which breaks the author image:
.avatar { margin-left: 53px; }2.) Please click the Toolbar Toggle icon to display all toolbars.
3.) You probably set the Primary color to white in the General Styling pane. Add this in the Quick CSS field:
.main_color .minor-meta a, .main_color .text-sep, .main_color .minor-meta { color: black; }Cheers!
IsmaelHey!
Alright. This is probably an issue with your browser because as you can see it looks OK in the screenshots. Please try to disable all extensions or uninstall the browser then install it back. If you don’t want to reinstall the browser, just reset the settings. The theme doesn’t need Java to run, if you think this is a java issue, you can uninstall java in the computer system completely.
Regards,
IsmaelOctober 27, 2015 at 7:15 am in reply to: How to adjust Blog posts grid 3 column to 2 column layout for category and tag? #525344Hi Dutchman!
Thank you for using Enfold.
You have to modify the archive.php file. Look for this code around lin 53:
'columns' => 3,Adjust the value.
Cheers!
IsmaelHi!
Please refer to this link in order to modify the email message: https://kriesi.at/support/topic/contact-form-indicator/#post-293282
Basically, you have to use the filter in the functions.php file:
function change_form_message($message) { $message .= "ADDITIONAL CONTENT HERE"; return $message; } add_filter('avf_form_message', 'change_form_message');Best regards,
IsmaelOctober 27, 2015 at 6:47 am in reply to: How to add 'Search' button on Single page custom main menu nav? #525340Hi!
How can we login to the site? I tried the link above “db-login” but it redirects me to the coming soon page. The wp-admin and wp-login is not working either. Instead of the zen menu plugin, use this instead: https://wordpress.org/plugins/menu-items-visibility-control/
Create only one menu which includes all menu items for all pages then use conditional functions to control the visibility of the menu items.
Best regards,
IsmaelHey!
Please try to switch to a default theme (twentyfifteen etc). See if you can reproduce the issue there. Make sure that the file permission of your WP directory is correct. Refer to this link: https://codex.wordpress.org/Changing_File_Permissions#Permission_Scheme_for_WordPress
Best regards,
IsmaelHi Gigi!
Thank you for using Enfold.
I’m sorry but this is a specific browser behavior, I don’t think we can control that. I tried to search for a solution but found nothing. I don’t have the latest version of safari but, maybe, you can disable that audio icon in the browser settings. For what its worth, it doesn’t display the audio icon on older safari browsers. I’ll ask the rest of the support team to check the thread.
EDIT: The video is actually not playing. Please update to the latest version of the theme.
Best regards,
IsmaelHey Mariusz!
Thank you for using Enfold.
Please add this below line 545:
$author_img = get_author_image_url(); $author_output .= '<img src="'.$author_img.'" alt="'.$author_name.'"/>';Place it at the very end of the $author_output. You can add a unique class so that you can style it later.
Cheers!
IsmaelHi!
Yes, it is a little bug in the advance layout builder but we still don’t know what’s causing it yet. All you have to do is to move the elements around just like what I did here. I moved the first color section below the second color section then move it back or just add a dummy color section then remove it immediately. Update the page. http://www.venen-steyr.at/venenveroedung/schaumveroedung/
Cheers!
IsmaelHey!
Add this:
div .products .product .price > a span + span + span { display: block !important; width: auto; float: left; } .woocommerce_de_versandkosten { float: left; }Regards,
IsmaelHey!
The english home page is using the the default editor instead of the advance layout builder, that’s why it’s not full width. Please check it now:
http://bellussi.com/wp-admin/post.php?post=6998&action=edit
http://bellussi.com/?lang=enRegards,
IsmaelHey!
Works fine when I converted the “less than” symbol to its html entity code: http://simplify-ppg.2w-demo.de/x1-90-100/
Cheers!
IsmaelOctober 27, 2015 at 5:41 am in reply to: Size pictures in Color section/Section background tab #525324Hey!
The parallax container which holds the background is actually taller than the actual color section. Why? Please refer to this link: https://kriesi.at/support/topic/color-background/#post-422349
https://kriesi.at/support/topic/help-need-fullscreen-slider-image-size-advice/#post-520740Best regards,
IsmaelHey!
Those are responsive, yes, but they don’t have a parallax effect. You can set the background attachment to fixed.
Cheers!
IsmaelOctober 27, 2015 at 5:28 am in reply to: want the gallery big preview image to be constant size #525321Hey!
Note that specified thumbnail size are set to soft crop so it will not generate the images to the specified width and height unless you set the crop parameter to true. For example, the entry_with_sidebar845x321 thumbnail size doesn’t mean that the images will be exactly 845x321px in size. Use the Simple Image Size plugin to hard crop the images. Go to Settings > Media then look for the “entry_with_sidebar845x321 “, set the crop parameter to true. Update then regenerate the thumbnails afterwards.
https://wordpress.org/plugins/simple-image-sizes/
Cheers!
Ismael -
AuthorPosts
