Forum Replies Created

Viewing 30 posts - 64,081 through 64,110 (of 66,017 total)
  • Author
    Posts
  • in reply to: Fixed sidebar bugged #133552

    Hi,

    Please try this one:

    .sidebar {
    position: fixed;
    border: none !important;
    }

    .sidebar_left .inner_sidebar {
    margin-right: 100px;
    margin-left: 70px;
    }

    .widget_nav_menu ul:first-child>.current_page_item {
    box-shadow: none;
    border: 1px solid #e1e1e1;
    border-right: none;
    border-left: none;
    }

    @media only screen and (max-width: 1100px) {
    /* Add your Mobile Styles here */
    .sidebar_left .inner_sidebar {
    margin-left: 40px;
    }
    }

    Regards,

    Ismael

    Hey,

    Thanks for the tip. :)

    Cheers,

    Ismael

    in reply to: breadcrumbs shifted down if superscript is used #131220

    Hi,

    Add this on your custom.css or Quick CSS

    body#top sup {
    vertical-align: top;
    }

    Regards,

    Ismael

    in reply to: Loosing icons in default editor and text block #132929

    Hey,

    Glad it is fixed. :)

    Cheers,

    Ismael

    in reply to: How to create six 1/6 columns? #133416

    Hey,

    Glad it worked. :)

    Cheers,

    Ismael

    in reply to: Fixed sidebar bugged #133548

    Hi,

    How did you manage to put it outside the container? When you set it to position: fixed, the sidebar should be within the container. Can you give us a link to the actual website?

    Regards,

    Ismael

    in reply to: How to remove very top header on mobile #133669

    Hi,

    Please add this on your custom.css or Quick CSS

    @media only screen and (max-width: 767px) {
    /* Add your Mobile Styles here */
    #header_meta {
    display: none;
    }

    }

    Regards,

    Ismael

    in reply to: Simplest way to embed Video or Audio URL's in Posts #133214

    Hey,

    Glad it worked. :)

    Please watch these videos to learn more about the theme: https://vimeo.com/channels/aviathemes

    Cheers,

    Ismael

    in reply to: Main Menu on Low Res #133008

    Hi,

    Please add this on your custom.css or Quick CSS

    body {
    overflow-x: scroll;
    overflow: visible;
    }

    You can only scroll to the right when you reached the bottom of the page.

    Regards,

    Ismael

    Hi,

    Open config-templatebuilder > aviashortcodes > portfolio.php, find this code on line 262:

    <a href='#prev' class='ajax_previous'>".$avia_config['font_icons']['prev']."</a>
    <a href='#next' class='ajax_next'>".$avia_config['font_icons']['next']."</a>

    Replace it with:

    <a href='#next' class='ajax_previous'>".$avia_config['font_icons']['prev']."</a>
    <a href='#prev' class='ajax_next'>".$avia_config['font_icons']['next']."</a>

    Regards,

    Ismael

    in reply to: Link to open youtube in a new tab #133583

    Hi,

    Use http://tinyurl.com/ or http://goo.gl/ to shorten or hide the url. Place that as the link url. You can also do the tip above by our kind designprime, using class=”nolightbox”.

    Regards,

    Ismael

    in reply to: Image Cropping #133463

    Hi,

    Please add this on your custom.css or Quick CSS

    .avia-gallery-big.fakeLightbox.lightbox {
    height: 518px !important;
    padding-top: 10px !important;
    }

    Please remove browser cache then reload the page. Check: http://chriswardphotography.net/galleries/fashion-and-portraits/

    You got a nice collection of photographs there. Excellent job! :)

    Regards,

    Ismael

    in reply to: Multiple font embedding #132562

    Hi,

    No, it is not a new feature, just a filter to add Google Fonts on the Theme Options > Styling. You won’t be needing the font face code if you’re using fonts from Google Fonts. Just add the name of the Google Font you want inside the filter:

    add_filter( 'avf_google_heading_font',  'avia_add_heading_font');
    function avia_add_heading_font($fonts)
    {
    $fonts['Allura'] = 'Allura';
    return $fonts;
    }

    add_filter( 'avf_google_content_font', 'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
    $fonts['Allura'] = 'Allura';
    return $fonts;
    }

    Although, sometimes you need to declare the font family for some elements directly on your custom.css or Quick CSS.

    Regards,

    Ismael

    in reply to: Show and hide div content #133227

    Hi,

    I think the Tab element will do the job.

    Regards,

    Ismael

    in reply to: Navigation issues on a one-page site #133623

    Hi,

    Please give us a link to the website. You can change the hover state with this:

    .header_color .main_menu ul:first-child > li > a:hover {
    color: red;
    }

    Regards,

    Ismael

    in reply to: Slider #133389

    Hi,

    You should probably decrease the size first before uploading it to the slider.

    Or you can edit the layer then go to Style tab, specify the width and height.

    Regards,

    Ismael

    in reply to: Vimeo video links instead of images #133607

    Hi,

    All I can see on the page are youtube videos. I don’t see vimeo links.

    Regards,

    Ismael

    in reply to: need side by side iconboxes to have the same height #131424

    Hi,

    You need to add this on your functions.php before you can assign specific css selector for each element.

    add_theme_support('avia_template_builder_custom_css');

    Regards,

    Ismael

    in reply to: LayerSlider/Layout Issue #133001

    Hey,

    Can you give us a screenshot? You can post it here using imgur, dropbox, mediafire etc. It is weird, this is the first time I’ve heard of it. Please download 1.9.1, it should fix the Slider issues.

    Regards,

    Ismael

    Hey,

    Please upgrade to 1.9.1 to fix the slider issues for wp 3.6.

    Regards,

    Ismael

    in reply to: Sliders still not working correctly after 1.9 update #133318

    Hi,

    @ridcon: The slider should be fixed on 1.9.1. Please remove browser cache then reload the page. You might want to redo the slider from scratch.

    Regards,

    Ismael

    in reply to: Version 1.7.1 bug? #133576

    Hi,

    The errors you’re having are not a big issue. This is the list of wordpress error level reporting.

    http://www.php.net/manual/en/errorfunc.configuration.php#ini.error-reporting

    Regards,

    Ismael

    Hi,

    You can switch the Advance Layout Editor(ALE ) to debug mode. This way, you’ll access to the actual shortcode while working on the ALE. Edit functions.php, find this code:

    if(isset($avia_config['use_child_theme_functions_only'])) return;

    Below, add this code:

    //set builder mode to debug
    add_action('avia_builder_mode', "builder_set_debug");
    function builder_set_debug()
    {
    return "debug";
    }

    add_theme_support('avia_template_builder_custom_css');

    You’ll see the actual element shortcode below the ALE.

    Regards,

    Ismael

    in reply to: Several questions re: Enfold and links (WP newbie) #131353

    Hi,

    It is not the 404 page, it is the search page. You need to edit search.php.

    Regards,

    Ismael

    in reply to: map shortcode plugin #133516

    Hi,

    1.) We can’t give you free support for any third party plugins, you need to contact the plugin author for that.

    2.) We’re not having any problem with Enfold Google Map Widget. Can you please implement the theme widget then give us a link to the page? We want to inspect it.

    Regards,

    Ismael

    in reply to: Content in Tabs moved – second column. #133250

    Hey,

    Glad it is fixed. :)

    Cheers,

    Ismael

    in reply to: How to create six 1/6 columns? #133414

    Hi,

    Use the 1/5 element then add this code on your custom.css or Quick CSS

    .flex_column.av_one_fifth.first.avia-builder-el-first {
    margin-left: 0 !important;
    }

    .flex_column.av_one_fifth.first.avia-builder-el-last {
    margin-left: 6%;
    float: left;
    clear: none;
    margin-top: 0;
    }

    div .av_one_fifth {
    margin-left: 6%;
    width: 10%;
    }

    Regards,

    Ismael

    in reply to: Comments section not showing up #131772

    Hi,

    You’re doing it wrong:

    <?php
    global $avia_config;

    /*
    * get_header is a basic wordpress function, used to retrieve the header.php file in your theme directory.
    */
    get_header();

    if( get_post_meta(get_the_ID(), 'header', true) != 'no') echo avia_title();
    ?>

    <div class='container_wrap main_color <?php avia_layout_class( 'main' ); ?>'>

    <div class='container'>

    <div class='template-page template-portfolio content <?php avia_layout_class( 'content' ); ?> units'>

    <?php
    /* Run the loop to output the posts.
    * If you want to overload this in a child theme then include a file
    * called loop-page.php and that will be used instead.
    */

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

    <!--end content-->
    </div>

    <?php

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

    ?>

    </div><!--end container-->

    <?php get_footer(); ?>

    Remove everything on single-portfolio.php then place the code above.

    Regards,

    Ismael

    in reply to: Fixing the top logo container #133434

    Hi,

    Please add this on your custom.css or Quick CSS

    .social_header #header_main .container, .social_header .main_menu ul:first-child > li a {
    height: 116px !important;
    line-height: 116px !important;
    }

    Adjust the height and line-height according to the height of your logo. Don’t remove the !important.

    Regards,

    Ismael

    in reply to: Logo Placement #132524

    Hi,

    You can start with this:

    Change the menu and logo container height:

    /*header with social icons: */
    .social_header #header_main .container, .social_header .main_menu ul:first-child > li a { height: 50px; line-height: 50px; }

    Then change the logo size independently

    .logo.bg-logo {
    height: 100px !important;
    }

    Regards,

    Ismael

Viewing 30 posts - 64,081 through 64,110 (of 66,017 total)