Forum Replies Created

Viewing 30 posts - 62,011 through 62,040 (of 66,017 total)
  • Author
    Posts
  • in reply to: A couple of image things #180541

    Hi!

    1.) Are you trying to remove the featured image on portfolio or your blog posts? What type of Blog Style are you using?

    .single .big-preview.single-big, .single  .small-preview {
    display: none;
    }

    2.) To disable the lightbox, edit js > avia.js and find this code on line 55:

    //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'});

    Remove browser cache then reload the page a few times.

    Regards,
    Ismael

    in reply to: Disable the default style slider for galleries #180539

    Hi brunostersa!

    What plugin are you trying to use? You can edit the gallery style on css > shortcodes.css > find the Gallery section on line 2390.

    Cheers!
    Ismael

    in reply to: Megamenu deleted – I can't access to Appearence > Menu #180536

    Hey!

    We can’t login to the site. It always load the wp-login page.

    Best regards,
    Ismael

    in reply to: Alternative to slider? #180535

    Hi!

    You can use this to force the height of the Color Section for larger screens sizes:

    @media only screen and (min-width: 1000px) {
    #test3 {
    height: 200px;
    }
    }

    Regards,
    Ismael

    in reply to: Small top nav dropdown not working #180534

    Hi hodgsondesign!

    I checked your site on safari and the top menu submenu works fine. Please remove browser cache then reload the page.

    #header_meta {
    z-index: 2 !important;
    }

    Best regards,
    Ismael

    in reply to: permalinks #180533

    Hi!

    Please us this plugin: http://wordpress.org/plugins/rewrite-rules-inspector/

    Flush the permalink settings a few times.

    Cheers!
    Ismael

    in reply to: Center Fullwidth Masonry Gallery #180529

    Hey Iano999!

    It’s not happening for at least 1500px in width. Please try to add this on your custom.css or Quick CSS:

    @media only screen and (min-width: 1601px) {
    .av-masonry-container.isotope {
    margin-left: 10%;
    }
    }

    Please give us a link to the actual website.

    Best regards,
    Ismael

    in reply to: Deactivate lightbox effect on button image links ONLY #180525

    Hi!

    Edit config-templatebuilder > avia-shortcodes > button.php, find this code:

    $output .= "<a href='{$link}' class='avia-button ".$this->class_by_arguments('icon_select, color, size, position' , $atts, true)."' {$blank} {$style} >";

    Replace it with:

    $output .= "<a href='{$link}' class='noLightbox avia-button ".$this->class_by_arguments('icon_select, color, size, position' , $atts, true)."' {$blank} {$style} >";

    Best regards,
    Ismael

    in reply to: Easy Slider – mobile rendering issue #180518

    Hi!

    Yes, please place the code on Quick CSS field or your custom.css. :)

    Best regards,
    Ismael

    in reply to: How to remove shadow on portfolio thumbnails #180513

    Hey Maradin!

    Please add this on your custom.css or Quick CSS to remove the box shadow:

    .grid-entry .inner-entry, img {
    box-shadow: none;
    }

    Cheers!
    Ismael

    in reply to: Full width logo #180512

    Hi!

    Looks like you managed to changed it. Please add this on your custom.css or Quick CSS:

    #header_main .container {
    width: 100%;
    }

    Cheers!
    Ismael

    in reply to: Maintenance – 404 – Redirect – Enfold #180509

    Hi!

    This is useful. Thanks. :)

    Regards,
    Ismael

    in reply to: thumbs crops in portfolio pages #180508

    Hey!

    Can you post the link of the portfolio page here? You can set a minimum width for portfolio thumbnails.

    .grid-image img {
    min-height: 300px;
    }
    
    .responsive_large .fullsize .grid-col-4 .grid-image {
    min-height: 300px;
    }

    Best regards,
    Ismael

    in reply to: Avia Interface Won't Load When Trying to Edit Homepage #180506

    Hey!

    Can you please upgrade to Enfold 2.4 then post the login details here? Set it as a private reply so that we can check the site. Please deactivate all plugins first. Also, check wp-content/plugins folder and delete unnecessary plugin folders.

    Regards,
    Ismael

    in reply to: Different layout for portfolio tag archive and blog archive #180503

    Hey EvelineB!

    You can edit archive.php and tag.php, find this code:

    //get the sidebar
    				$avia_config['currently_viewing'] = 'blog';
    				get_sidebar();

    Replace it with this for archive page:

    //get the sidebar
    				$avia_config['currently_viewing'] = 'archive';
    				get_sidebar();

    And replace it with this code for tag archive page:

    //get the sidebar
    				$avia_config['currently_viewing'] = 'tag';
    				get_sidebar();

    Edit sidebar.php, find this code:

    // forum pages sidebars
                if ($avia_config['currently_viewing'] == 'forum' && dynamic_sidebar('Forum') ) : $default_sidebar = false; endif;

    Below, add this:

    // archive pages sidebars
                if ($avia_config['currently_viewing'] == 'archive' && dynamic_sidebar('Archive Pages') ) : $default_sidebar = false; endif;
    			
    			// tag pages sidebars
                if ($avia_config['currently_viewing'] == 'tag' && dynamic_sidebar('Tag Pages') ) : $default_sidebar = false; endif;

    Edit includes > admin > register-widget-area.php, find this code:

    foreach ($sidebars_to_show as $sidebar)
    		{
    			register_sidebar(array(
    				'name' => 'Single Product Pages',
    				'before_widget' => '<div id="%1$s" class="widget clearfix %2$s">', 
    			'after_widget' => '<span class="seperator extralight-border"></span></div>', 
    			'before_title' => '<h3 class="widgettitle">', 
    			'after_title' => '</h3>', 
    			));
    		}

    Below, register the Tag and Archive widget area.

    
    		foreach ($sidebars_to_show as $sidebar)
    		{
    			register_sidebar(array(
    				'name' => 'Archive Pages',
    				'before_widget' => '<div id="%1$s" class="widget clearfix %2$s">', 
    			'after_widget' => '<span class="seperator extralight-border"></span></div>', 
    			'before_title' => '<h3 class="widgettitle">', 
    			'after_title' => '</h3>', 
    			));
    		}
    		
    		foreach ($sidebars_to_show as $sidebar)
    		{
    			register_sidebar(array(
    				'name' => 'Tag Pages',
    				'before_widget' => '<div id="%1$s" class="widget clearfix %2$s">', 
    			'after_widget' => '<span class="seperator extralight-border"></span></div>', 
    			'before_title' => '<h3 class="widgettitle">', 
    			'after_title' => '</h3>', 
    			));
    		}

    You can now add different widgets for Tag and Archive page.

    Regards,
    Ismael

    in reply to: safari and chrome….. still Not looking good. #180502

    Hey dkowalewski!

    What picture? Can you please post a screenshot of the issue? You can use imgur, dropbox etc to show the screenshot.

    Cheers!
    Ismael

    in reply to: enable comments portfolio pages #180501

    Hi Robert!

    If you want to show the comments on portfolio, you can edit single-portfolio.php and find this code:

     $avia_config['size'] = avia_layout_class( 'main' , false) == 'entry_without_sidebar' ? '' : 'entry_with_sidebar';
    get_template_part( 'includes/loop', 'portfolio-single' );

    Below, add this code:

    //wordpress function that loads the comments template "comments.php"
    comments_template( '/includes/comments.php');

    And edit pages.php, find this code:

    $avia_config['size'] = avia_layout_class( 'main' , false) == 'entry_without_sidebar' ? '' : 'entry_with_sidebar';
                        get_template_part( 'includes/loop', 'page' );

    Below, add the comments section again.

    //wordpress function that loads the comments template "comments.php"
    comments_template( '/includes/comments.php');

    This will only work if you’re not using the Advance Layout Editor for the pages.

    Best regards,
    Ismael

    in reply to: Submit button – use the enfold instead of the form button #180497

    Hey midischool!

    Can you please post a screenshot of the button that you want? You can style the submit button using this selector on Quick CSS:

    .main_color input[type='submit'] {
    background-color: #c05f5f;
    color: #ffffff;
    border-color: #a03d3d;
    }
    
    .avia_ajax_form .button {
    margin: 0;
    padding: 16px 50px;
    border-radius: 2px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    font-weight: normal;
    font-size: 12px;
    }
    
    input[type="submit"], #submit, .button {
    padding: 9px 22px;
    cursor: pointer;
    border: none;
    -webkit-appearance: none;
    border-radius: 0px;
    }

    Cheers!
    Ismael

    in reply to: LayerSlider problem with links #180496

    Hi!

    The link is working properly. It takes a while to load but it works. I applied the second slide’s link to the first one. This is the link that I used. http://www.waterlandfilm.nl/portfolio-item/rundskop/

    Please check the page: http://www.waterlandfilm.nl/

    Regards,
    Ismael

    in reply to: Breadcrumbs in portfolio section #180494

    Hi philwragg!

    Can you please give us a link to the page? Do the “Homepage” page exist?

    Best regards,
    Ismael

    in reply to: colors of the rםwes and borders of a table #180170

    Hey Indiatravelz!

    You can add this on your custom.css or Quick CSS to remove the gray:

    .main_color tr:nth-child(odd), .main_color .pricing-table>li:nth-child(odd), .main_color .pricing-extra {
    background: white;
    }

    Best regards,
    Ismael

    in reply to: Blog disappearing when toggled to "Grid" View #180167

    Hi!

    I’m not sure why the Grid Layout is not working. Can you please upgrade to Enfold 2.4? It is available on your themeforest account. Download it then update the theme via FTP.

    Regards,
    Ismael

    in reply to: Portfolio Breadcrumbs problem #180159

    Hi!

    Did you set the Mobile App category as Second Apps’s Parent category?

    Cheers!
    Ismael

    in reply to: Product page layout #180156

    Hi artspbseo!

    You can’t enable a right sidebar on the single product page. It will always be below the product image. You can choose not to show it using this on your custom.css or Quick CSS:

    #top #main .single-product-main-image .sidebar, #top #main .single-product-main-image .inner_sidebar {
    display: none;
    }

    Best regards,
    Ismael

    in reply to: Full width logo #180154

    Hey weathertight!

    You can use the Color Section then set the logo image as background. Can you please post a screenshot of what you want to do?

    Cheers!
    Ismael

    in reply to: No webfonts in IE 8 #180152

    Hey!

    The site http://www.safetyrevolutionltd.com/ is not using Enfold. Can you please provide us with the correct link?

    Regards,
    Ismael

    in reply to: [solved] Woocommerce, CSS and sidebar widget #180148

    Hi!

    Did you add the widget on the Shop Overview Page? Have you tried removing it then place it again on the widget area? Please post the login details here and set it as a private reply.

    Cheers!
    Ismael

    in reply to: Schriftart wird auf dem Mobile verändert #180143

    Hi crevlon!

    What heading are we talking about here? I visited the page you provided on question 1 and it takes me to a Blog Page. Can you please post a screenshot?

    Regards,
    Ismael

    in reply to: Partner/Logo element is a mess on IE10 #180122

    Hey!

    Please try this:

    #top .avia-logo-element-container img {
    width: auto;
    }

    I tested it on IE8 – IE10 and it works fine. This is the screenshot of my test installation.

    Best regards,
    Ismael

    in reply to: issue with button #180115

    Hey!

    You can manually insert the button link on a Text Block element. You can use this:

    <form><input type="button" value="Download Now" onClick="window.location.href='DOWNLOAD LINK HERE'"></form>

    Regards,
    Ismael

Viewing 30 posts - 62,011 through 62,040 (of 66,017 total)