Forum Replies Created
-
AuthorPosts
-
Hi!
There are lots of Learn More button on the slider. Did you add an attribute to each of them? Please use the class attribute if you’re planning to add the same style on every learn more button.
Best regards,
IsmaelHey!
You can use this on your custom.css or Quick CSS:
@media only screen and (min-width: 1161px) and (max-width: 1350px) { .avia-button.avia-size-large { min-width: 668px; } } @media only screen and (min-width: 1007px) and (max-width: 1160px) { .avia-button.avia-size-large { min-width: 550px; } } @media only screen and (min-width: 786px) and (max-width: 1006px) { .avia-button.avia-size-large { min-width: 678px; } } @media only screen and (max-width: 785px) { .avia-button.avia-size-large { min-width: 428px; } }Cheers!
IsmaelNovember 7, 2013 at 3:04 am in reply to: Fullwidth Masonry Gallery … open custom link in a new window/tab possible ? #185443Hey pixelmixture!
I’m not sure if it is possible but you can choose to open the link on a new tab. Edit config-templatebuilder > avia-shortcodes > masonry_entries.php, find this code:
//set the html tags. depending on the link settings use either an a tag or a div tag if(!empty($this->atts['container_links']) || !empty($custom_url)) { $this->loop[$key]['html_tags'] = array('a href="'.$this->loop[$key]['url'].'"','a'); //opening and closing tag for the masonry container } else { $this->loop[$key]['html_tags'] = array('div','div'); }Replace it with:
//set the html tags. depending on the link settings use either an a tag or a div tag if(!empty($this->atts['container_links']) || !empty($custom_url)) { $this->loop[$key]['html_tags'] = array('a target="_blank" href="'.$this->loop[$key]['url'].'"','a'); //opening and closing tag for the masonry container } else { $this->loop[$key]['html_tags'] = array('div','div'); }Remove browser cache then reload the page.
Cheers!
IsmaelHi spmg67!
1.) When creating the link on Appearance > Menus, just add the id of the section. For example, the Opportunity menu items should have the URL “#opportunity” only.
2.) Please do step 1 then check it again on safari.
3.) Please do step 1 then check it again on firefox.
4.)
Regards,
IsmaelNovember 7, 2013 at 1:34 am in reply to: How can I make the navigation menu go responsive sooner? #185421Hi!
Please edit js > avia.js, find this code:
var menu = header.find('.main_menu ul:eq(0)'), first_level_items = menu.find('>li').length, bottom_menu = $('html').is('.bottom_nav_header'), switchWidth = 767; if(first_level_items > 7 + header.find('#menu-item-search').length && !bottom_menu) { switchWidth = 989; header.addClass('mobile_menu_tablet'); }Replace it with:
var menu = header.find('.main_menu ul:eq(0)'), first_level_items = menu.find('>li').length, bottom_menu = $('html').is('.bottom_nav_header'), switchWidth = 1024; if(first_level_items > 7 + header.find('#menu-item-search').length && !bottom_menu) { switchWidth = 1024; header.addClass('mobile_menu_tablet'); }Make sure that you remove the browser cache then reload the page a few times.
Cheers!
IsmaelHey!
The code works for me. Please copy this code directly on your functions.php:
add_filter('avia_post_nav_categories', 'use_same_category_filter'); function use_same_category_filter($same_category) { $same_category = true; return $same_category; }Regards,
IsmaelHi MatHom!
You can add this on your custom.css or Quick CSS:
body, body p { font-size: 15px; }Cheers!
IsmaelHi!
Please give us a link to the page so that we can give you a proper css solution.
Regards,
IsmaelHey microh!
Can you please provide a screenshot? Upload the theme again via FTP. Please post the link of the website here.
Regards,
IsmaelHi glozemedia!
What button? There are various button elements on the theme. Is it the button shortcode? The contact form button? Can you please give us a link to the page with the button element? You can try this on your custom.css or Quick CSS:
.avia_iconbox_title { font-size: 20px; }Best regards,
IsmaelHi!
Please try this:
div .logo { left: 40%; position: relative; top: -40px; } .main_menu { position: relative; z-index: 100; line-height: 10px; height: 100%; margin: 0; left: 20%; bottom: -40px; }Best regards,
IsmaelHey StuWeTueHo!
Edit config-templatebuilder > avia-shortcodes > postslider.php, find this code:
$prepare_excerpt = !empty($entry->post_excerpt) ? $entry->post_excerpt : avia_backend_truncate($entry->post_content, apply_filters( 'avf_postgrid_excerpt_length' , 60) , apply_filters( 'avf_postgrid_excerpt_delimiter' , " "), "…", true, '');Replace it with:
$prepare_excerpt = !empty($entry->post_excerpt) ? $entry->post_excerpt : do_shortcode(avia_backend_truncate($entry->post_content, apply_filters( 'avf_postgrid_excerpt_length' , 300) , apply_filters( 'avf_postgrid_excerpt_delimiter' , " "), "…", false, ''));This will increase the excerpt length. You should increase the “300” value for longer shortcodes.
Best regards,
IsmaelHi bethperkins!
You can use the Image element then change the Image Link? to Set Manually. Add the url of any vimeo or youtube videos. It will automatically open in lightbox. You can also add this code on a text block.
<a href="VIDEO OR IMAGE URL HERE" rel="lightbox">CLICK HERE</a>Cheers!
IsmaelNovember 7, 2013 at 12:47 am in reply to: Enfold Theme – Wrong Logo adaptation when viewing in smartphone mode #185399Hey!
Please try this:
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ .logo img, .logo a { width: 152px; max-width: 152px; min-width: 152px; height: 80px; min-height: 80px; max-height: 80px; } }Best regards,
IsmaelHi!
Can you please remove the field “Name*”? Create it again from scratch. Deactivate all plugins.
Regards,
IsmaelNovember 5, 2013 at 8:14 am in reply to: Portfolio thumbnails size etc – hard crop inline style etc #184676Hi!
You can edit functions.php, find this code:
$avia_config['imgSize']['portfolio'] = array('width'=>495, 'height'=>400 ); // images for portfolio entries (2,3 column)You can replace the height and width then regenerate the thumbnails using this plugin: http://wordpress.org/plugins/regenerate-thumbnails/
Cheers!
IsmaelHi!
You can add the .home selector:
.home .fixed_header #main { padding-top: 0; } .home .header_bg { opacity: .1; filter: alpha(opacity=10); }Best regards,
IsmaelHey!
Please add this on your custom.css or Quick CSS:
#header { background-color: white; } #top .social_bookmarks li a { display: initial\9; }Best regards,
IsmaelHey!
Can you please give us a link to the website? The menu should switch to either dropdown or slidemenu on smaller screen sizes.
Regards,
IsmaelHi!
You can adjust the left and right padding then decrease the font-size:
.main_menu ul:first-child > li > a { padding: 0 8px !important; font-size: 12px; }Regards,
IsmaelHey smue!
Edit js > avia.js, find this code:
//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.
Best regards,
IsmaelHi!
You can do something like this. Edit the menu item then change the “Navigation Label” to something like this:
Online Print <span class="menu-second-line">and Content Writing</span>Add this on your custom.css or Quick CSS:
.menu-second-line { clear: both; display: block; position: relative; top: -70px; }Best regards,
IsmaelHi ksiarza!
Use the Text widget then copy the button shortcode.
[av_button label='Click me' link='' link_target='' color='theme-color' custom_bg='#444444' custom_font='#ffffff' size='small' position='center' icon_select='yes' icon='']Regards,
IsmaelHi!
Edit header.php, find this code:
if($phone) echo "<div class='phone-info {$phone_class}'><span>{$phone}</span></div>";Below add the qtranslate code:
qtrans_generateLanguageSelectCode('dropdown');Cheers!
IsmaelHi!
It is disabled because most mobile browsers allow users to simply tap the menu bar at the top of the screen to scroll back to the top of a webpage, the scroll to top button is not necessary.
Cheers!
IsmaelHi!
You can move the dropdown menu using this on your custom.css or Quick CSS:
.main_menu .menu ul { left: -100px; position: absolute; }Cheers!
IsmaelHi ullastret!
What type of blog style do you have on the single post view? You can add this on your custom.css or Quick CSS to remove the featured images on the single post view.
.single .big-preview.single-big, .single .small-preview { display: none; }Best regards,
IsmaelHi Monsoon!
This cannot be easily done without the use of plugins or manual coding. I’m sorry but please hire a freelance developer if you don’t want to use a plugin.
Cheers!
IsmaelHey Monsoon!
Can you please give us a link to the actual article with the featured image? You can add this on your custom.css or Quick CSS to remove the featured image link:
.big-preview.single-big a { pointer-events: none; }You can edit functions.php to control the size of the featured image.
$avia_config['imgSize']['entry_without_sidebar']= array('width'=>1030, 'height'=>360 ); // images for fullsize pages and fullsize sliderChange the width and the height then use this plugin to regenerate the thumbnails. http://wordpress.org/plugins/regenerate-thumbnails/
Best regards,
IsmaelNovember 5, 2013 at 5:54 am in reply to: Streched Homepage Layout, Boxed Layout for remainder of site #184639Hey RDCSI!
I’m sorry but I think this is a bit complicated. You may need to hire a freelance developer to modify the layout for you. Have you tried using the Advance Layout Builder? Can you please give us a screenshot of what you’re trying to do?
Best regards,
Ismael -
AuthorPosts
