Forum Replies Created

Viewing 30 posts - 50,701 through 50,730 (of 67,534 total)
  • Author
    Posts
  • in reply to: Bug Report: Tables & HTML Tags on Mobile #416824

    Hi!

    The table content on mobile devices is rendered using css content property so html tags will not work. Try to set the Table Purpose to tabular data and the Responsive Styling to scrollable.

    Best regards,
    Ismael

    in reply to: Seitliches Lesezeichen einbinden #416822
    in reply to: Indent Bullet points #416820

    Hey!

    Please post the link to the actual website and if possible, provide a screenshot of the element that you want to modify. Use imgur or dropbox.

    Cheers!
    Ismael

    Hey!

    Please create a new thread with the website url and login credentials. We’ll check it there. We can’t seem to reproduce the issue on our installation so try to deactivate all plugins.

    Best regards,
    Ismael

    in reply to: Additional in Hotspot text when using Image with Hotspot #416815

    Hi!

    Yes, we have reported the issue to Kriesi. There should be a fix included on the next update. Use the temporary fix for now.

    Best regards,
    Ismael

    in reply to: Stretched images IE8 #416814

    Hi!

    The changes are not being applied. This css code still exists:

    img, a img {
      height: 100%!important;
    }

    Please deactivate the cache plugin then test it again.

    Cheers!
    Ismael

    in reply to: How to remove the taxonomy "Post Formats" from Enfold #416432

    Hey!

    I’m sorry but that will require modifications of multiple core theme files which is not advisable because it will be overwritten once you update the theme. Best thing to do is inform all admins not to use that option.

    Cheers!
    Ismael

    in reply to: Font disappear after "https" #416421

    Hey!

    Please try to replace:

    <style>
    @import url(https://psbook.co.il/wp-content/themes/enfold/css/fontstyle.css);
    body{
    font-family: 'Open Sans Hebrew', serif;
    }
    </style>
    

    with:

    <style>
    @import url(https://psbook.co.il/wp-content/themes/enfold/css/fontstyle.css);
    body{
    font-family: 'Open Sans Hebrew', serif;
    }
    </style>
    

    Cheers!
    Ismael

    Hey!

    Thank you for using Enfold.

    First, I would like to mention that the theme is not built for the “Customizer”. There are only three options there so I don’t think you will be using that panel more than you will be using the theme’s advance layout builder or shortcodes. Regarding the issue at hand, please refer to this link: https://wordpress.org/support/topic/session-instantly-expires-customizephp

    In wordpress settings > general menu I had my “site address (URL)” set to “www.domain.com” when I switched it back to just “domain.com” that worked for me.

    Regards,
    Ismael

    in reply to: Open Main Menu Item in a Lightbox #416411

    Hey!

    Go to Appearance > Menu panel then create a custom link. Append the ?iframe=true query at the end of the url.

    You can do the same with images, add the image url as custom link URL. ( ex. http://www.mystie.com/image.jpg)

    Best regards,
    Ismael

    Hey!

    The main menu links still points to the home page with the “Icon List” element. I set the “Test” page as home: http://sciscomediation.com/

    Regards,
    Ismael

    in reply to: Tabs on mobile #416405

    Hey!

    Sorry for the delay. I was wrong about the typo, please ignore it. The tab seems to be working fine on our installation. The tab scrolls back to the tab title when it’s not in viewport. Please provide a temporary ftp credentials. We would like to inspect it.

    Regards,
    Ismael

    Hi!

    Yes, there’s something wrong with the code. My bad. We modified the code above, please try it.

    Regards,
    Ismael

    in reply to: Shortcode doesn't render on page. What is going wrong ? #416391

    Hi joao_parana!

    Thank you for using Enfold.

    Make sure that you’re running Enfold 3.1.1 on WordPress 4.1.1. Do you have any plugins installed? Please deactivate them.

    Regards,
    Ismael

    in reply to: Easy slider image size #416387

    Hey!

    It’s possible but you have to add a few css media queries to keep it responsive:

    .avia-slideshow, .avia-slideshow-inner {
      width: 800px !important;
      margin: 0 auto;
    }

    Best regards,
    Ismael

    in reply to: Sidebar menu formatting broken with update #416386

    Hey!

    Use this:

    .main_color .widget_nav_menu ul:first-child>.current-menu-item, .main_color .widget_nav_menu ul:first-child>.current_page_item {
      background: transparent;
      box-shadow: none;
      border: 0;
    }
    
    .cmw-has-submenu.current-menu-item > a {
      border-top: 1px solid rgba(0, 0, 0, 0.2) !important;
      border-bottom: 1px solid rgba(0, 0, 0, 0.2) !important;
      background: #fcfcfc;
      position: relative;
      left: -65px;
      width: 100%;
      display: block;
      padding-left: 65px !important;
    }
    
    #top .widget_nav_menu ul ul li.current-menu-item a {
     font-weight: bold;
    }

    Best regards,
    Ismael

    in reply to: Masonry titles shown when they shouldn't #416382

    Hi Rickard!

    Thank you for using Enfold.

    The title is set to display by default on mobile devices because as we know mobile devices doesn’t support hover state. You can hide it with this:

    @media only screen and (max-width: 767px) {
    .av-masonry-entry .av-masonry-entry-title { display: none !important; }}
    

    Regards,
    Ismael

    in reply to: html5 video thumbnail #416379

    Hey Vermishelle!

    Thank you for using Enfold.

    The video shortcode and the video element should have the same video player skin. Please try the default wp video shortcode:

    [video poster="poster.jpg" src="video-source.mp4"]
    

    Cheers!
    Ismael

    in reply to: Disappearing content on upgrade #416373

    Hey!

    Thank you for using Enfold.

    The google map element works fine on our installation so it’s either a third party plugin or a custom modification that is causing the issue. Please deactivate all plugins. If it doesn’t work, try to remove the map then add it again.

    Regards,
    Ismael

    Hey!

    Thank you for using Enfold.

    Please post the website url here. We would like to inspect it. Have you tried contacting the plugin author?

    Cheers!
    Ismael

    in reply to: THUMBS PORTFOLIO #416016

    Hi!

    This will require custom modification directly on the core theme files. Edit shortcode.js. Look for this code on line 2287:

    var gallery = $(this), images = gallery.find('img'), big_prev = gallery.find('.avia-gallery-big');
    

    Replace it with:

    var gallery = $(this), images = gallery.find('img'), big_prev = gallery.find('.avia-gallery-big'), imglink = gallery.find('.avia-gallery-thumb a');
    

    Change this line:

    //trigger displaying of thumbnails
    		gallery.on('avia_start_animation', function()
    		{			
    			images.each(function(i)
    			{
    				var image = $(this);
    				setTimeout(function(){ image.addClass('avia_start_animation') }, (i * 110));
    			});
    		});

    With this:

    //trigger displaying of thumbnails
    		gallery.on('avia_start_animation', function()
    		{
    			imglink.each(function(i)
    			{
    				imglink.removeAttr('href');
    			});
    			
    			images.each(function(i)
    			{
    				var image = $(this);
    				setTimeout(function(){ image.addClass('avia_start_animation') }, (i * 110));
    			});
    		});

    Again, look for this line:

    gallery.on('mouseenter','.avia-gallery-thumb a', function()
    

    Replace it with:

    gallery.on('click','.avia-gallery-thumb a', function()
    

    Edit avia.js, look for this code:

    exclude			:	'.noLightbox, .noLightbox a, .fakeLightbox, .lightbox-added',
    

    Replace it with:

    exclude			:	'.noLightbox, .noLightbox a, .lightbox-added, .avia-gallery-thumb a',
    

    Last, add this to the Quick CSS field:

    #top .avia-gallery .avia-gallery-thumb a {
    	cursor: pointer;
    }

    Best regards,
    Ismael

    in reply to: Color Content Element images not appearing on mobile #415996

    Hi beezdezines!

    Thank you for using Enfold.

    What kind of phone are you using? Please use Chrome or firefox when testing the site. I checked it on an iPod Touch using chrome and the section backgrounds display fine. The background of “What is TCL?” section creates a texture like effect which actually looks nice.

    Cheers!
    Ismael

    in reply to: Mehr Abstand im Topmenü #415995

    Hi Coco!

    Thank you for using Enfold.

    Please provide a link to the website. A screenshot will help.

    Best regards,
    Ismael

    in reply to: Layer Slider not working on iPhone 6 #415994

    Hi thomasappell!

    Thank you for using Enfold.

    I checked the site on an iPod Touch and the layer slider displays fine. What browser are you using? I’ll ask the rest of the support team to check.

    Best regards,
    Ismael

    in reply to: How to wrap buttons in shortcode #415991

    Hi hypnorich!

    Thank you for using Enfold.

    I’m sorry but we’re not familiar with this specific plugin and as stated on our support policy, any third party plugin issues should be redirected to the plugin author. Anyway, how can we add these buttons? Please create a test page where we can see an example of the shortcode. And you should avoid switching between the default editor and the advance layout builder because some shortcodes, mostly full width elements, are not compatible with the default editor.

    Regards,
    Ismael

    Hey!

    The code works fine our installation. Post the website url here, we would like to check it. Note that this will only work for pages or posts created using the advance layout builder.

    Regards,
    Ismael

    in reply to: Transparent menu #415979

    Hi!

    Thank you for using Enfold.

    Looks like you already set it to Transparent & Glassy Header. You can adjust the color of the menu items on Header > Transparency Options > Transparency menu color settings.

    Best regards,
    Ismael

    in reply to: Quick CSS has broken following theme update #415977

    Hey!

    The apostrophe symbol in this line is incorrect and it breaks all css declarations below:

    .av-special-heading h3 {
    font-family: ‘Oswald';
    }

    Replace it with:

    .av-special-heading h3 {
    font-family: 'Oswald';
    }

    Regards,
    Ismael

    in reply to: Add Background Color to Column #415976

    Hey jsdevore!

    Thank you for using Enfold.

    Add a code block on top of the column layout. Add this code:

    <style type="text/css">
    .avia_code_block_0 + .flex_column {
    background: red;
    }
      
      .avia_code_block_0 + .flex_column + .flex_column {
    background: blue;
    }
    </style>

    Cheers!
    Ismael

    in reply to: Favicon help #415918

    Hi joymoleta!

    Thank you for using Enfold.

    It shows fine on Chrome Windows 7, even on Bookmarks Manager. Try to remove browser cache, restart the browser, then reload the page.

    Best regards,
    Ismael

Viewing 30 posts - 50,701 through 50,730 (of 67,534 total)