Forum Replies Created

Viewing 30 posts - 60,271 through 60,300 (of 66,126 total)
  • Author
    Posts
  • in reply to: Image Quality #213707

    Hi weathertight!

    Add this on Quick CSS or custom.css:

    img, a img {
        image-rendering: auto;
    }

    Best regards,
    Ismael

    in reply to: Issue with IE 9 #213706

    Hey segalmedia!

    Please try this on Quick CSS:

    #nav_menu-2 {
    top: -30px\9;
    }

    Regards,
    Ismael

    in reply to: Icon Box and Text #213699

    Hi!

    You can add this on Quick CSS to decrease the width of the 1/3 column on the page:

    .page-id-2712 .flex_column.av_one_third {
    width: auto;
    }

    Regards,
    Ismael

    in reply to: Safe changes in enfold_child.css in /uploads/dynamic_avia? #213695

    Hi!

    The file enfold_child.css can be overwritten or override. You can modify the css styling of the theme directly on the style.css of the child theme or you can use the Quick CSS.

    Best regards,
    Ismael

    in reply to: Social Icons in same line that secondary menu #213667

    Hey!

    Glad it is fixed. :)

    Regards,
    Ismael

    in reply to: Breadcrumbs doesn't work correct after portfolio sorting #213665

    Hey Trender!

    Please try to add this at the very bottom of functions.php:

    add_action('after_setup_theme','avia_remove_portfolio_breadcrumb');
    
    function avia_remove_portfolio_breadcrumb(){
    remove_filter('avia_breadcrumbs_trail','avia_modify_breadcrumb');
    }

    Best regards,
    Ismael

    in reply to: Blank/white page after theme activation #213664

    Hey!

    Please post the login details here as a private reply. We would like to inspect it.

    Regards,
    Ismael

    in reply to: big issue with avia builder on safari. #213657

    Hey!

    I have reported the issue to Kriesi. Please wait for his response. Please disable all existing plugins and extensions on your browser then test the avia builder again.

    Regards,
    Ismael

    in reply to: Button Text misaligning #213655

    Hi erikkIsrael!

    Can you please post a screenshot of what you’re trying to do? A link to the actual page will help.

    Regards,
    Ismael

    in reply to: Small Fixed Header Color #213653

    Hi erikkIsrael!

    Add this on Quick CSS:

    #header {
    background-color: #4d3318;
    }
    
    .header_bg {
    opacity: 1;
    filter: alpha(opacity=100);
    }

    Cheers!
    Ismael

    in reply to: Remove link from thumbnails in Portfolio Gallery #213651

    Hey redpupmedia!

    Edit config-templatebuilder > avia-shortcodes > gallery.php, find this code on line 212:

    $output .= "<a class='avia-gallery-big fakeLightbox $imagelink $crop_big_preview_thumbnail' href='".$link[0]."' data-onclick='1' title='".$description."' ><span class='avia-gallery-big-inner' $markup_url>";
    							$output .= "	<img src='".$prev[0]."' title='".$title."' alt='".$alt."' />";
    			   if($caption) $output .= "	<span class='avia-gallery-caption'>{$caption}</span>";
    							$output .= "</span></a>";

    Replace it with:

    $output .= "	<img src='".$prev[0]."' title='".$title."' alt='".$alt."' />";
    			   if($caption) $output .= "	<span class='avia-gallery-caption'>{$caption}</span>";

    And this code on line 216:

    
    $thumbs .= " <a href='".$link[0]."' data-rel='gallery-".self::$gallery."' data-prev-img='".$prev[0]."' {$class} data-onclick='{$counter}' title='".$description."' $markup_url><img {$tooltip} src='".$img[0]."' title='".$title."' alt='".$alt."' /></a>";
    

    Replace it with:

    
    $thumbs .= " <img {$tooltip} src='".$img[0]."' title='".$title."' alt='".$alt."' />";
    

    Add this on Quick CSS to retain the cursor. Remove browser cache then reload the page.

    .avia-gallery {
    cursor: pointer;
    }

    Best regards,
    Ismael

    in reply to: Pop Up Plugin #213648

    Hi!

    No, you don’t have to use php. Just follow the instruction on the link that I gave you to open a page or an inline content using lightbox. This can be done using the Text Block. This is an example.

    Open this thread using lightbox

    This is the actual code. I added the ?iframe=true at the end of the url.

    <a href="https://kriesi.at/support/topic/pop-up-plugin?iframe=true" rel="prettyPhoto">Open this thread using lightbox</a>

    Cheers!
    Ismael

    in reply to: images not resizing in text blocks #213646

    Hi mediumstudio!

    Please try to insert the Text Block inside a column layout. You can also use the Image element under Media Elements panel, place inside a column layout. The images’ width are set to 100%, you can add a unique css selector to the image then specify the width and height using Quick CSS.

    Cheers!
    Ismael

    in reply to: Icon Not Appearing in IconBox #213645

    Hey lkane!

    From what version did you update the theme? Please try to recreate the icon boxes from scratch.

    Cheers!
    Ismael

    in reply to: disable magnification in lightbox #213643

    Hi!

    You can add this on Quick CSS or custom.css:

    .pp_expand {
    display: none !important;
    }

    Regards,
    Ismael

    in reply to: Fonts #213641

    Hi mrtechnique!

    You can use this filter on functions.php to add google fonts:

    add_filter( 'avf_google_heading_font',  'avia_add_heading_font');
    function avia_add_heading_font($fonts)
    {
    $fonts['Source Sans Pro'] = 'Source Sans Pro:400,600,800';
    return $fonts;
    }
    
    add_filter( 'avf_google_content_font',  'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
    $fonts['Source Sans Pro'] = 'Source Sans Pro:400,600,800';
    return $fonts;
    }

    Replace Source Sans Pro with the font that you want. Which headings are you trying to change? You can use this for the body font:

    body, body p {
    font-size: 15px;
    }

    Cheers!
    Ismael

    in reply to: Issues with Beadcrumb #213639

    Hey!

    Please add this at the very bottom of functions.php:

    add_action('after_setup_theme','avia_remove_portfolio_breadcrumb');
    
    function avia_remove_portfolio_breadcrumb(){
    remove_filter('avia_breadcrumbs_trail','avia_modify_breadcrumb');
    }

    Cheers!
    Ismael

    in reply to: Custom Taxonomy in Portfolio Grid #213638

    Hi!

    You can use the Blog Posts element instead of the Portfolio Grid. Add this on functions.php to sort the portfolio items.

    add_filter('avia_post_grid_query', 'avf_custom_post_grid_query');
    
    function avf_custom_post_grid_query ( $query ) {
    $query['orderby'] = 'rand';
    return $query;
    }
    

    Cheers!
    Ismael

    in reply to: Misalignment of icons #213634

    Hey!

    Please edit the page. Inspect the shortcode then remove the line break tag (<br>) below the first 1/3 column. Use this on Quick CSS to remove the post meta infos:

    .post-meta-infos {
    display: none;
    }

    Best regards,
    Ismael

    in reply to: How to increase space in portfolio grid items? #213633

    Hey Jorge!

    You can something like this on Quick CSS:

    .isotope_activated .isotope-item {
    margin-left: 0;
    padding-right: 10px;
    }

    Regards,
    Ismael

    in reply to: changing the look of main page #213632

    Hey FiestaInsurance!

    Go to Enfold > Header > Responsive Header Main Menu > choose the “Slide out Menu”.

    Cheers!
    Ismael

    in reply to: Use Fullwidth Masonry Gallery in Posts ? #213309

    Hey!

    Yes, you can add a Text Widget on widget area then leave it blank.

    Cheers!
    Ismael

    Hey!

    You can adjust the top margin of the columns using this:

    body .column-top-margin {
    margin-top: 10px;
    }

    Best regards,
    Ismael

    in reply to: Add custom field to portfolio item #213276

    Hi epresley!

    You can use custom fields in different ways and I don’t think it will be added on the theme anytime sooner. Maybe you can try these plugins:

    http://wordpress.org/plugins/advanced-custom-fields/

    http://wordpress.org/plugins/custom-field-suite/

    Regards,
    Ismael

    in reply to: Error : undefined index #213270

    Hey CelebrationEvents!

    Is this still happening? I don’t see the error and the masonry is working when I checked the link.

    Best regards,
    Ismael

    in reply to: How To create A custom social icon #213264

    Hi jta!

    I’m afraid you can only use the fontello icons with the theme. For example, if you want to add a slideshare social icon, download a fontello icon and install the icon using the font manager. You can add this filter on functions.php.

    add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
    function avia_add_custom_icon($icons)
    {
    $icons['slideshare']	 = array( 'font' =>'fontello', 'icon' => 'ue801');
    return $icons;
    }
    
    add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);
    function avia_add_custom_social_icon($icons)
    {
    $icons['Slideshare'] = 'slideshare';
    return $icons;
    }

    Go to to Enfold > Header and add the Slideshare icon to the social icons.

    Best regards,
    Ismael

    in reply to: Social Icons in same line that secondary menu #213260

    Hey!

    Please use this instead:

    @media only screen and (max-width: 767px) {
    .responsive #header .social_bookmarks {
    position: absolute;
    left: -60px;
    width: 50%;
    }
    
    .responsive #header .sub_menu, .responsive #header_meta .sub_menu>ul {
    width: 75%;
    position: relative;
    right: -70px;
    }
    
    #menu-item-6214 a {
    position: relative !important;
    top: 0px !important;
    }
    }

    The header should look like this after:

    Best regards,
    Ismael

    in reply to: All portfolio items in a given category on one page #213258

    Hey!

    You need to create one portfolio item for each slide if you want to them to have their own respective page.

    Regards,
    Ismael

    in reply to: Enfold Child Theme #213257

    Hey!

    You can use this:

    #av_section_1 .av_textblock_section {
    background: white;
    padding: 20px;
    }

    Change the background to any color you want.

    You can use this on the second page:

    .flex_column.av_two_third.first.avia-builder-el-7.el_after_av_one_third.column-top-margin {
    background: rgba(255,255,255,.8);
    padding: 20px;
    }

    Cheers!
    Ismael

    in reply to: Center 2/3 Column #213254

    Hi cavanaughb!

    Please give us a link to the page with the 2/3 column. We can move it using CSS but we need to inspect the page. You can add something like this on Quick CSS:

    .flex_column.av_two_third {
    margin-left: 20%;
    }

    Cheers!
    Ismael

Viewing 30 posts - 60,271 through 60,300 (of 66,126 total)