Forum Replies Created

Viewing 30 posts - 62,521 through 62,550 (of 66,728 total)
  • Author
    Posts
  • in reply to: Responsive headings #185416

    Hi!

    Please give us a link to the page so that we can give you a proper css solution.

    Regards,
    Ismael

    in reply to: Enfold Front Page Settings not showing pages. #185415

    Hey microh!

    Can you please provide a screenshot? Upload the theme again via FTP. Please post the link of the website here.

    Regards,
    Ismael

    in reply to: Theme Button Text Size #185410

    Hi 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,
    Ismael

    in reply to: Centered Logo with menu below #185409

    Hi!

    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,
    Ismael

    in reply to: Display shortcodes in postslider / grid elements #185407

    Hey 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,
    Ismael

    in reply to: How do I get the lightbox to work? #185404

    Hi 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!
    Ismael

    Hey!

    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,
    Ismael

    in reply to: Contact Submit Button #185396

    Hi!

    Can you please remove the field “Name*”? Create it again from scratch. Deactivate all plugins.

    Regards,
    Ismael

    Hi!

    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!
    Ismael

    in reply to: Single Image Landing Page w/menu #184675

    Hi!

    You can add the .home selector:

    .home .fixed_header #main {
    padding-top: 0;
    }
    
    .home .header_bg {
    opacity: .1;
    filter: alpha(opacity=10);
    }

    Best regards,
    Ismael

    in reply to: Header and CSS problem with IE8 and IE9 #184671

    Hey!

    Please add this on your custom.css or Quick CSS:

    #header {
    background-color: white;
    }
    
    #top .social_bookmarks li a {
    display: initial\9;
    }

    Best regards,
    Ismael

    in reply to: Enfold Version 2.4.2 menu squeezed narrower width #184670

    Hey!

    Can you please give us a link to the website? The menu should switch to either dropdown or slidemenu on smaller screen sizes.

    Regards,
    Ismael

    in reply to: Stacking Navigation Link Text #184668

    Hi!

    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,
    Ismael

    in reply to: disable the default lightbox #184666

    Hey 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,
    Ismael

    in reply to: Can I have a Top level menu item over two lines? #184660

    Hi!

    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,
    Ismael

    in reply to: Add Button to Footer #184659

    Hi 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,
    Ismael

    in reply to: Language drop down #184658

    Hi!

    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!
    Ismael

    in reply to: top link missing #184654

    Hi!

    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!
    Ismael

    in reply to: Prevent dropdown from getting wider than browser #184650

    Hi!

    You can move the dropdown menu using this on your custom.css or Quick CSS:

    .main_menu .menu ul {
    left: -100px;
    position: absolute;
    }

    Cheers!
    Ismael

    in reply to: Featured image to appear only on thumbnail #184644

    Hi 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,
    Ismael

    in reply to: Enfold – Fixed sidebar? #184643

    Hi 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!
    Ismael

    in reply to: Enfold – Featured image remove link to image #184642

    Hey 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 slider

    Change the width and the height then use this plugin to regenerate the thumbnails. http://wordpress.org/plugins/regenerate-thumbnails/

    Best regards,
    Ismael

    Hey 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

    in reply to: Avia Post NAV with the same category ? #184637

    Hi RomainGR!

    Can you please post the link to the page with the avia post navigation? Please try this:

    add_filter('avia_post_nav_categories', 'use_same_category_filter');
    function use_same_category_filter($same_category)
    {
    $same_category = true;
    return $same_category;
    }

    Cheers!
    Ismael

    in reply to: webfont icons problem (IE 10, windows 7 Professional) #184633

    Hi!

    Have you tried using another icon fonts? Some icon fonts can’t be rendered on different browsers.

    Regards,
    Ismael

    Hi!

    What is the version of IE on Nokia 925? The logo adjust properly when I check it on IE8 to IE10. You can check the look of your website on mobile view here: http://responsinator.com/?url=http%3A%2F%2Fequipodemarketing.com%2F

    Best regards,
    Ismael

    in reply to: Drop Down Hover not working in safari/on mac's #184581

    Hi!

    Yes, that’s what we’re trying to fix. Did you use the code I provided? Try this one:

    #menu-main-menu .sub-menu li:hover a {
    display: block;
    background: #5e3c73;
    color: white !important;
    }

    Let’s wait for Kriesi and Devin’s response. They can check this on a MAC computer.

    Cheers!
    Ismael

    in reply to: Hide sidebar widgets in woocommerce pages #184574

    Hey ival!

    Go to Enfold > Sidebar > Page Sidebar navigation, select “Don’t display sidebar navigation”.

    Cheers!
    Ismael

    in reply to: Contact Form Sizing #184570

    Hey!

    Can you please post the link to your website? Please give us a link to the actual contact page. Do you have a contact form plugin?

    Cheers!
    Ismael

    in reply to: Text Resize on sliders #184568

    Hey!

    Can you please give the text block a unique css selector?

    <span style="color: #000000;">Breathe Cleaner Air&nbsp;in Your Home</span>

    Replace it with:

    <span style="color: #000000;" class="text-breathe">Breathe Cleaner Air&nbsp;in Your Home</span>

    You can now use media query to change text size on different screens:

    @media only screen and (max-width: 767px){
    .text-breathe { font-size: 12px; }
    }
    
    @media only screen and (min-width: 768px) and (max-width: 989px) {
    .text-breathe { font-size: 16px; }
    }

    Cheers!
    Ismael

Viewing 30 posts - 62,521 through 62,550 (of 66,728 total)