Forum Replies Created

Viewing 30 posts - 62,371 through 62,400 (of 64,775 total)
  • Author
    Posts
  • in reply to: Links Not working #136619

    Hey,

    They are the “blue” text, right? They are working fine on my end.

    Regards,

    Ismael

    in reply to: Header/Nav/footer #135875

    Hey,

    Thanks for the screenshot. Please remove all of the code I gave you then use this instead:

    #top .main_menu .menu li {
    display: none;
    }

    #menu-item-search {
    display: block !important;
    }

    #header_main .social_bookmarks {
    left: 0;
    top: 120%;
    }

    Regards,

    Ismael

    in reply to: Multicolumn NavMenu #136618

    Hi,

    Can you post a screenshot of what you’re trying to do? There is the mega menu but since you specify “main”, I don’t think you’re going for it.

    Regards,

    Ismael

    in reply to: Positioning shortcodes in Header.php #136474

    Hi,

    Edit header.php, find this code:

    echo avia_logo(AVIA_BASE_URL.'images/layout/logo.png', false, 'strong');

    Below, add this code:

    echo '<div class="mc4wp-form">'.do_shortcode('[mc4wp-form]').'</div>';

    Edit Quick CSS or your custom.css, add this code:

    .mc4wp-form {
    position: absolute;
    left: 300px;
    top: 60px;
    }

    Adjust the left and top position.

    Regards,

    Ismael

    in reply to: Center Menu & Logo on iPad Portrait #134173

    Hey,

    Glad it worked. :)

    Cheers,

    Ismael

    in reply to: Ajax Gallery #136422

    Hey,

    Let’s wait for Dude or Kriesi to answer this question. I want to use Google Translate but I’m not sure if the translation is correct.

    Please hold on for their answer.

    Please watch this video to learn more about the theme: https://vimeo.com/channels/aviathemes/64927359

    Regards,

    Ismael

    in reply to: Updating Archive title(s) #136295

    Hey,

    You can copy the avia_which_archive function on the child theme’s function.php:

    if(!function_exists('avia_which_archive'))
    {
    /**
    * checks which archive we are viewing and returns the archive string
    */

    function avia_which_archive()
    {
    $output = "";

    if ( is_category() )
    {
    $output = __('ERERERERERER for category:','avia_framework')." ".single_cat_title('',false);
    }
    elseif (is_day())
    {
    $output = __('Archive for date:','avia_framework')." ".get_the_time('F jS, Y');
    }
    elseif (is_month())
    {
    $output = __('Archive for month:','avia_framework')." ".get_the_time('F, Y');
    }
    elseif (is_year())
    {
    $output = __('Archive for year:','avia_framework')." ".get_the_time('Y');
    }
    elseif (is_search())
    {
    global $wp_query;
    if(!empty($wp_query->found_posts))
    {
    if($wp_query->found_posts > 1)
    {
    $output = $wp_query->found_posts ." ". __('search results for:','avia_framework')." ".esc_attr( get_search_query() );
    }
    else
    {
    $output = $wp_query->found_posts ." ". __('search result for:','avia_framework')." ".esc_attr( get_search_query() );
    }
    }
    else
    {
    if(!empty($_GET['s']))
    {
    $output = __('Search results for:','avia_framework')." ".esc_attr( get_search_query() );
    }
    else
    {
    $output = __('To search the site please enter a valid term','avia_framework');
    }
    }

    }
    elseif (is_author())
    {
    $curauth = (get_query_var('author_name')) ? get_user_by('slug', get_query_var('author_name')) : get_userdata(get_query_var('author'));
    $output = __('Author Archive','avia_framework')." ";

    if(isset($curauth->nickname)) $output .= __('for:','avia_framework')." ".$curauth->nickname;

    }
    elseif (is_tag())
    {
    $output = __('Tag Archive for:','avia_framework')." ".single_tag_title('',false);
    }
    elseif(is_tax())
    {
    $term = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) );
    $output = __('Archive for:','avia_framework')." ".$term->name;
    }
    else
    {
    $output = __('Archives','avia_framework')." ";
    }

    if (isset($_GET['paged']) && !empty($_GET['paged']))
    {
    $output .= " (".__('Page','avia_framework')." ".$_GET['paged'].")";
    }

    return $output;
    }
    }

    Regards,

    Ismael

    in reply to: Deactivate table functions and borders around images #136298

    Hey,

    1.) What do you mean remove the functions? Or do you mean remove the style of the Enfold table? Please give us a link to your website.

    2.) No, there is no option to add border or frames to the images. You need to manually edit them using CSS.

    Regards,

    Ismael

    in reply to: Turn off Author & Category under posts #136111

    Hey,

    This is what you said “Also, how can I NOT display the header and breadcrumbs on an installed plug in post?”.

    If you only want to remove the breadcrumb, just add this on your custom.css or Quick CSS:

    .breadcrumb.breadcrumbs.avia-breadcrumbs {
    display: none;
    }

    Regards,

    Ismael

    in reply to: Google "Montserrat" – how can I add it? #136104

    Hey,

    Glad we could help. :)

    Cheers,

    Ismael

    in reply to: sidebar #136312

    Hey,

    You can go to Enfold > Styling > scroll a bit below for the Quick CSS field. You can also use the custom.css located on the css folder via FTP or your cpanel.

    Please refer to this link: https://kriesi.at/support/topic/increasing-width-of-sidebar-images-to-300-px

    Regards,

    Ismael

    in reply to: Icons in Enfold #136261

    Hi,

    The tab elements doesn’t have the icons. Are you talking about the iconbox or the iconlist?

    Regards,

    Ismael

    in reply to: Shortcodes in tabs and WP restore function #133191

    Hey,

    Yup, you can bookmark your own profile page: https://kriesi.at/support/profile/awilson3rd

    Regards,

    Ismael

    in reply to: Blog Pagination Not working in Grid view #135258

    Hey,

    Please let us know if it works.

    Cheers,

    Ismael

    in reply to: Center Menu & Logo on iPad Portrait #134171

    Hey,

    Let us know if it is fixed. I’m sure Nick’s code will work. :)

    Regards,

    Ismael

    Hey,

    Can you give us a link to the page with the meta info issue?

    Regards,

    Ismael

    in reply to: Footer widget width #136469

    Hey,

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

    .flex_column.av_one_fifth:nth-child(1) {
    width: 12.2%;
    }

    .flex_column.av_one_fifth:nth-child(2) {
    width: 12.2%;
    }

    .flex_column.av_one_fifth:nth-child(3) {
    width: 12.2%;
    }

    .flex_column.av_one_fifth:nth-child(4) {
    width: 19%;
    }

    .flex_column.av_one_fifth:nth-child(5) {
    width: 19%;
    }

    The 4th and 5th column will be bigger than the rest.

    Regards,

    Ismael

    in reply to: * Portfolio & Blog featured images cropping #135465

    Hi,

    @KarinGabriele: Yeah, the design of the website looks good. :)

    Cheers,

    Ismael

    in reply to: Enfold Main Menu Underline on Sub Pages #129625

    Hey,

    @FLQA: Thanks for this. :)

    Regards,

    Ismael

    in reply to: Deactivate Shrinking Effect #136364

    Hey,

    Edit js > avia.js, find this code:

    // decreases header size when user scrolls down
    avia_header_size();

    Replace it with:

    // decreases header size when user scrolls down
    //avia_header_size();

    Remove browser cache the reload the page.

    Regards,

    Ismael

    in reply to: Render issues in current version of IE #136132

    Hey,

    Glad we could help. :)

    Cheers,

    Ismael

    in reply to: Reduce margins on all pages #135884

    Hey,

    You can decrease the content padding:

    .content, .sidebar {
    padding-top: 5px;
    padding-bottom: 5px;
    }

    Regards,

    Ismael

    in reply to: Pictures in table #136305

    Hey,

    Please switch the Advance Layout Editor to debug mode. This way, you’ll be able to see the actual shortcode below the builder.

    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";
    }

    You can combine shortcodes like you do on the Default Editor.

    You can add this on your custom.css or Quick CSS to decrease the space between the tables:

    .pricing-table {
    margin: 1px;
    }

    Regards,

    Ismael

    in reply to: Twitter widget pro css #136448

    Hey,

    Please give us a link to your website and a screenshot on how you want it to look like. Maybe, we can help you fix it.

    Regards,

    Ismael

    in reply to: Video on iOS = double play buttons #135288

    Hey,

    Please use this:

    @media only screen and (max-width: 767px) {
    .image-overlay.overlay-type-video {
    display: none !important;

    .mejs-overlay-button {
    display: none !important;
    }
    }

    Remove browser cache the reload the page. :)

    Regards,

    Ismael

    in reply to: Blog Pagination Not working in Grid view #135256

    Hi,

    Please go to Settings > Reading > select a page for “Front page displays” > A static page (select below). Select home page for “Front page:” and your Blog page as “Posts page:”

    Regards,

    Ismael

    in reply to: Ajax Gallery #136420

    Hi,

    Can you please post a screenshot of what you want to do? I’m sorry but it is a bit unclear. Please post a question in german, I’ll tag Dude.

    Regards,

    Ismael

    in reply to: Still unable to disable the lightbox in AJAX view… #135977

    Hey,

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

    .avia-slideshow-gallery .avia-slideshow-inner li a {
    pointer-events: none;
    }

    Regards,

    Ismael

    in reply to: Turn off breadcrumbs #136408

    Hey,

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

    .breadcrumb.breadcrumbs.avia-breadcrumbs {
    display: none;
    }

    Regards,

    Ismael

Viewing 30 posts - 62,371 through 62,400 (of 64,775 total)