Forum Replies Created

Viewing 30 posts - 61,501 through 61,530 (of 67,348 total)
  • Author
    Posts
  • 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

    in reply to: Partner logos not displaying with consistent size on iphone #213251

    Hey NanaKuo!

    You can add this on Quick CSS to adjust the width of the logo on mobile devices.

    @media only screen and (max-width: 767px) {
    .responsive #top .avia-content-slider-even .slide-entry.slide-parity-odd, .responsive #top .avia-content-slider-odd .slide-entry.slide-parity-even {
    margin: 0;
    clear: both;
    width: 100%;
    }
    
    .responsive #top .avia-smallarrow-slider .flex_column {
    margin: 0px;
    width: 100%;
    }
    }

    Cheers!
    Ismael

    in reply to: Icon Box and Text #213246

    Hi!

    Please try to insert each set of icons and text on a column layout. Maybe 3 1/3 column layout aligned side by side.

    Regards,
    Ismael

    in reply to: Remove Search from Nav and Adding a Button #213244

    Hi!

    Create a custom link on Appearance > Menus, add the url then label it “Request a Demo”. Inspect the menu item then get the menu id. It will something like “#menu-item-2311”. Yours might be different. Add this on Quick CSS:

    .sub_menu #menu-item-2311 a {
    position: relative;
    width: 100px;
    background: blue !important;
    display: block;
    text-align: center;
    top: -11px;
    left: -5px;
    }

    Please give us a link to the website after you added the custom link.

    Regards,
    Ismael

    in reply to: Portfolio ajax slider image to sit flush at top of screen #213242

    Hi simmer!

    That will require a bit of modification and is beyond the scope of our support. Please hire a freelance developer to modify the ajax portfolio function. You can visit this site.

    Best regards,
    Ismael

    in reply to: Changing Image When Hovering Over Images #213241

    Hey!

    Ok. My bad! You really need to edit base.css then find the code I posted above. Change the icon code.

    Best regards,
    Ismael

    in reply to: layerslider is just not working on my host #213240

    Hi!

    You can increase the wordpress php memory limit. Please refer to this link. Increase it to at least 128M.

    Best regards,
    Ismael

    in reply to: Facebook and Twitter widget on Homepage of http://kriesi.at/ #213238

    Hi!

    Unfortunately, you can’t do that but you can increase the delay for the layer on transition out. Set a high number for the Transition Out > Delay.

    Regards,
    Ismael

    in reply to: Enfold – Team members photo/box alignment #213236

    Hey!

    You can try this:

    .avia-team-member {
    text-align: center;
    }
    
    .team-member-description {
    text-align: left;
    }

    Regards,
    Ismael

Viewing 30 posts - 61,501 through 61,530 (of 67,348 total)