Forum Replies Created

Viewing 30 posts - 45,361 through 45,390 (of 66,134 total)
  • Author
    Posts
  • in reply to: How to get spaces for paragraphs in text block #509400

    Hi!

    Add a separator element via shortcode wand to create a gap between the text.

    Best regards,
    Ismael

    in reply to: align all submenu images #509397

    Hey!

    Thank you for the update. Try this in the Quick CSS field:

    #top .av-subnav-menu a[href="http://ganubis.com/nighthawks/"] {
        top: 10px;
    }

    Regards,
    Ismael

    in reply to: Tablet Portrait Columns & Ajax Portfolio Slideshow #509392

    Hi!

    Nice! Thanks for hanging on. Glad it’s finally fixed. :)

    Best regards,
    Ismael

    Hey!

    Great! Glad it worked. And I would like to apologize for the frustration. We are doing to our best to help and we’ll try to accommodate customizations as long as it is within reason. We can’t do so every time because there’s a lot of inquiries posted every day. Thank you for your patience.

    Cheers!
    Ismael

    in reply to: Blurry Thumbnails Enfold Latest News Widget #508889

    Hi!

    The code above will completely remove the thumbnails. Please try it first then update us if it doesn’t work. This is the full list of the thumbnails if you want to remove everything:

    function ava_image_sizes() { 
    	add_image_size('masonry', 0, 0);
    	add_image_size('magazine', 0, 0);
    	add_image_size('widget', 0, 0);
    	add_image_size('featured', 0, 0);
    	add_image_size('featured_large', 0, 0);
    	add_image_size('extra_large', 0, 0);
    	add_image_size('portfolio_small', 0, 0);
    	add_image_size('gallery', 0, 0);
    	add_image_size('entry_with_sidebar', 0, 0);
    	add_image_size('entry_without_sidebar', 0, 0);
    	add_image_size('square', 0, 0);
    }
    add_action( 'after_setup_theme', 'ava_image_sizes', 11 );

    Note that removing the thumbnails will have a negative effect on the site, on google pagespeed insights for example.

    EDIT: Don’t forget to use the plugin suggested on the previous post after you add the code. It will delete all the previous images then regenerate the default image.

    Regards,
    Ismael

    in reply to: Sorting options not displayed. seems to be missing #508886

    Hi ngyuansong!

    Thank you for using Enfold.

    Did you set the sort options to show? The sort container is set to “hidden” when I checked the page.

    <div class="sort_by_cat hidden">
    

    Please try to update the theme to the latest version, 3.3.2.

    Cheers!
    Ismael

    in reply to: Opaque header on small screens #508879

    Hi!

    Cool! Glad we could help. :)

    Cheers!
    Ismael

    in reply to: Separator between menu items #508878

    Hey!

    The site is currently not using the latest version of the theme. Please update to version 3.3.2. Try to add this in the Quick CSS field:

    .av_seperator_small_border .av-main-nav > li > a > .avia-menu-text {
        border-left-style: solid;
        border-left-width: 1px;
        padding-left: 13px;
        margin-left: -13px;
    }

    Cheers!
    Ismael

    in reply to: How to add a link to custom content? #508874

    Hey connect4consulting!

    Thank you for using Enfold.

    What is the code that you use to add the custom content? Please post it on pastebin.com. Try to add a link tag:

    <div class="custom_content"><h1><a href="URL OF HOME PAGE">CRITICAL CONNECTIONS</a></h1></div>
    

    Best regards,
    Ismael

    in reply to: Website cut off on viewing from iPhone5c and iPhone6 #508872

    Hi!

    We modified the code above. Please test it again. :)

    Best regards,
    Ismael

    in reply to: Remove Thin Vertical lines between MegaMenu columns #508869

    Hi!

    This should work:

    #top #header .avia_mega_div>.sub-menu>li:nth-child(n+2) {
        border-right: 0;
    }

    Regards,
    Ismael

    in reply to: About the "preloading icon" in Enfold #508862

    Hey urdaniz!

    Thank you for using Enfold.

    This issue has been reported before but it is intermittent, seems random, so we never figured out the real cause of the issue. I actually checked the site and see if I can reproduce it but the page always load properly when I click the “back” button. I’ll ask the rest of the support team if they can reproduce the issue.

    P.S: Site looks awesome. :)

    EDIT: Browsing through the site, I realized that the preloader is disabled. Please enable it back.

    Best regards,
    Ismael

    in reply to: Blurry Thumbnails Enfold Latest News Widget #508854

    Hi!

    Yes, I know exactly what you want. That’s why I suggested to delete the registered thumbnail sizes in functions.php file. Actually, I edited my post above. You can try the ava_image_sizes function in the child theme’s functions.php file. Regenerate the thumbnails with this plugin: https://wordpress.org/plugins/force-regenerate-thumbnails/

    Regards,
    Ismael

    in reply to: Blurry Thumbnails Enfold Latest News Widget #508848

    Hi!


    @hunter74
    : I’m sorry but it’s not possible to delete a pre-set thumbnail size with a function. You can only remove the registered thumbnail size on functions.php file. Look for this block of code:

    $avia_config['imgSize']['widget'] 			 	= array('width'=>36,  'height'=>36);						// small preview pics eg sidebar news
    $avia_config['imgSize']['square'] 		 	    = array('width'=>180, 'height'=>180);		                 // small image for blogs
    $avia_config['imgSize']['featured'] 		 	= array('width'=>1500, 'height'=>430 );						// images for fullsize pages and fullsize slider
    $avia_config['imgSize']['featured_large'] 		= array('width'=>1500, 'height'=>630 );						// images for fullsize pages and fullsize slider
    $avia_config['imgSize']['extra_large'] 		 	= array('width'=>1500, 'height'=>1500 , 'crop' => false);	// images for fullscrren slider
    $avia_config['imgSize']['portfolio'] 		 	= array('width'=>495, 'height'=>400 );						// images for portfolio entries (2,3 column)
    $avia_config['imgSize']['portfolio_small'] 		= array('width'=>260, 'height'=>185 );						// images for portfolio 4 columns
    $avia_config['imgSize']['gallery'] 		 		= array('width'=>845, 'height'=>684 );						// images for portfolio entries (2,3 column)
    $avia_config['imgSize']['magazine'] 		 	= array('width'=>710, 'height'=>375 );						// images for magazines
    $avia_config['imgSize']['masonry'] 		 		= array('width'=>705, 'height'=>705 , 'crop' => false);		// images for fullscreen masonry
    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>845, 'height'=>321);		            	// big images for blog and page entries
    $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1210, 'height'=>423 );						// images for fullsize pages and fullsize slider
    

    EDIT: Actually, you can try this in the child theme’s functions.php file:

    function ava_image_sizes() { 
    	add_image_size('masonry', 0, 0);
    	add_image_size('magazine', 0, 0);
    	add_image_size('widget', 0, 0);
    }
    add_action( 'after_setup_theme', 'ava_image_sizes', 11 );

    Set the width and height to 0. Register all the thumbnails that you want to remove inside the ava_image_sizes function.

    Regards,
    Ismael

    in reply to: Add site title to the right of the logo #508845

    Hey kcimme!

    Thank you for using Enfold.

    You can follow the solution here: https://kriesi.at/support/topic/adding-text-to-header-2/#post-503992

    Best regards,
    Ismael

    in reply to: Postslider.php: Show only the parent category-name #508844

    Hi!

    You can use this function: https://codex.wordpress.org/Template_Tags/wp_list_categories#Display_Categories_Assigned_to_a_Post

    Set the “depth” parameter to 1 to display only top level categories. The example on the link should work in your case.

    Cheers!
    Ismael

    Hey!


    @118group
    : What is the issue with the slider exactly? Can you please create another thread with the page url? A screenshot will help as well.

    Best regards,
    Ismael

    in reply to: Shrinking Header no longer working with logo size #508837

    Hi!

    It’s actually the same transition as the default. You can check an example here: http://kriesi.at/themes/enfold/

    Best regards,
    Ismael

    in reply to: Responsive image like in One Page Portfolio Demo #508829

    Hi!

    What is the screen resolution of the mobile device? Try to adjust the code:

    @media only screen and (max-width: 767px) {
    .avia-android #advanced_menu_toggle {
    top: 27px;
    right: 50px;
    }}

    Adjust the “right” position value.

    Best regards,
    Ismael

    in reply to: creating a home page grid with multiple sized images #508821

    Hey!

    1.) I checked the Settings > Permalink panel and the structure is set to “/about” which is an invalid permalink. We set it back to the default “/%postname%”. http://69.89.31.117/~hoseagru/test/a-really-simple-entry/

    2.) Can you please provide a screenshot of this issue? The masonry looks OK when I check the test page.

    3.) Place the masonry element outside of the 1/1 column layout element. Or set the “Size Settings” to Perfect Manual Masonry. You can read the note under the settings.

    Manually control the height and width of entries by adding either a “landscape” or “portrait” tag when creating the entry. Elements with no such tag use a fixed default size, elements with both tags will display extra large

    4.) There is no option for that, unfortunately. Can you please provide a screenshot of the hover effect that you want? You can contact codeable: http://kriesi.at/contact/customization

    Cheers!
    Ismael

    in reply to: Sorting category links missing on portfolio page #508809

    Hey!

    I checked the home page and the sorting links for the portfolio grid are there:

    All / Graphic Design / Logo Design / Software / Web Design & Development
    

    Please hard refresh the page.

    Cheers!
    Ismael

    • This reply was modified 9 years, 9 months ago by Andy.
    in reply to: How to fit the images in a correct width and height #508808

    Hi!

    I’m sorry, I completely forgot about the link. Don’t worry. Instead of the grid row element, use the Masonry Gallery element under Media Elements panel. Add the images to the gallery. Edit each image then look for the “Custom Link” field. You can add the url of the page where you want the image to link when clicked. Set the gallery “Columns” option to 4, disable the “Image Title and Caption” then set the “Image Link” to the second option.

    Cheers!
    Ismael

    in reply to: Icons / Social Icons Missing on Second Domain #508802

    Hey!

    Try to replace the .htaccess file with this:

    <FilesMatch "\.(ttf|otf|woff|eot)$">
    <IfModule mod_headers.c>
    	Header set Access-Control-Allow-Origin "*"
    </IfModule>
    </FilesMatch>

    It should fix the error in the console:

    Font from origin 'http://www.gelbett.ch' has been blocked from loading by Cross-Origin Resource Sharing policy: The 'Access-Control-Allow-Origin' header contains multiple values '*, *', but only one is allowed. Origin 'http://flexside.ch' is therefore not allowed access.
    

    Best regards,
    Ismael

    Hi!

    The images in these pages are loading properly now:

    http://rentonfrance.com/proprietes-en-location/
    http://rentonfrance.com/villa-okio-la-croix-valmer/

    Please remove browser cache or hard refresh the page before testing them.

    Cheers!
    Ismael

    Hi!

    Again, I’m sorry for the inconvenience. We restored the site. You can now login to the page. We’ll give you an update after we check the current issue.

    Regards,
    Ismael

    in reply to: facebook share problem #508790

    Hi!

    What if you delete the actual image (portraits_alphacoffee.jpg) in the wp-content/uploads/2015/07 folder? Maybe, it will catch the new image if the previous image doesn’t exist.

    Best regards,
    Ismael

    in reply to: Trying to Understand Portfolios – tutorials not enough #508789

    Hi!

    You can use this plugin to convert posts to a custom post type (portfolio): https://wordpress.org/plugins/convert-post-types/

    Regards,
    Ismael

    in reply to: Login and Register #508787

    Hey!

    There are available plugins specifically for this purpose so you won’t have to create it manually. For example, you can try this: https://wordpress.org/plugins/ciusan-register-login/

    You can then use the plugin’s shortcode in the functions.php file:

    // add something
    add_action('avia_meta_header', function() {
    	echo do_shortcode("[ciusan_register]");	
    });

    Cheers!
    Ismael

    in reply to: Responsive Page to Mobile Devices #508779

    Hey!

    This is an old issue with the “Blank – No Header, No Footer” template. Please update the theme to the latest version.

    Try this in the Quick CSS field:

    #top.avia-blank {
        width: 100% !important;
        display: block;
    }
    
    #top.avia-blank #wrap_all {
        display: block;
    }

    Did you modify the theme files?

    Cheers!
    Ismael

    Hey!

    Try to use the video tag in a code block. Something like this:

    <video controls poster="IMAGE URL HERE">
      <source src="http://vrworldsummit.s3.amazonaws.com/mysessionforVRWSld.mp4" type="video/mp4">
      Your browser does not support the video tag.
    </video>

    Add the image url in the poster attribute.

    Cheers!
    Ismael

Viewing 30 posts - 45,361 through 45,390 (of 66,134 total)