Forum Replies Created

Viewing 30 posts - 61,951 through 61,980 (of 66,839 total)
  • Author
    Posts
  • in reply to: Anzeigen von eigener Sidebar auf Event Seiten #198365

    Hey fertilizer!

    Is it ok for you to remove all widgets on the “Displayed Everywhere” widget area? You can use the Sidebar Pages widget area for other page or you can create a Custom Sidebar for other pages.

    Best regards,
    Ismael

    in reply to: what plug-in/program is this site using to create this page? #198363

    Hi justinwheelon!

    There are donation plugins available for free. Try these:

    http://wordpress.org/plugins/seamless-donations/
    http://wordpress.org/plugins/smart-donations/

    Cheers!
    Ismael

    in reply to: I can't upload an image in my portfolio! #198362

    Hi!

    Please try to download the latest WordPress version then update your installation just like Devin said. http://codex.wordpress.org/Updating_WordPress#Manual_Update

    Best regards,
    Ismael

    in reply to: Featured Image Size #198360

    Hi derek62!

    Is this for blog posts? Images with 700x360px dimension will do.

    Cheers!
    Ismael

    in reply to: Enfold Menu Item Limit #198358

    Hey apoirier!

    You’re using a very old version of the theme and you have tons of plugins installed. Please download the latest version of the theme on your themeforest account then deactivate all plugins if possible. Update the theme via FTP. http://vimeo.com/channels/aviathemes/67209750

    Best regards,
    Ismael

    in reply to: I need a mobileMenu for iPad (landscape) view #198356

    Hi!

    We would like to inspect it. Please post the login details here as a private reply. Before that please do Dudes’ instruction but look for this code on js > avia.js on line 9:

    avia_responsive_menu();

    Replace it with:

    //avia_responsive_menu();

    Then add Dude’s css code on Quick CSS field. Remove browser cache then reload the page. This should disable the mobile menu.

    Cheers!
    Ismael

    in reply to: table column and row style #198348

    Hey tobylove!

    It is not actually using a bold font. You can use this on your custom.css or Quick CSS to change the light color:

    .main_color .pricing-table>li:nth-child(even), .main_color .pricing-table>li:nth-child(odd) {
    color: black;
    }

    Can you please post a screenshot of what you’re trying to do?

    Best regards,
    Ismael

    in reply to: How to manipulate alignment in color-sections #197935

    Hey!

    Glad it is finally working now. Can you please give us a link to the page with the table?

    Cheers!
    Ismael

    in reply to: DIsplay sidebar with navigation – but not by default #197934

    Hi KattaC!

    You can add this on your custom.css or Quick CSS to remove it from other pages.

    .widget_pages, .widget_categories, .widget_archive {
    display: none !important;
    }

    Then inspect the page that you want the sidebar navigation to show. You can use the Google Chrome Inspect Element. Look for the unique css body class.

    On the example above, the page’s unique selector is .page-id-2251. We can use it to alter the display of the sidebar navigation on that specific page.

    .page-id-2251 .widget_pages, .page-id-2251 .widget_categories, .page-id-2251 .widget_archive  {
    display: block !important;
    }

    Make sure that this is at the bottom of the first css code provided.

    Cheers!
    Ismael

    in reply to: "undefined" error in Tab Element #197933

    Hey whatworld!

    Can you please give us a link to the website? Do you have any plugins installed? Please deactivate them.

    Cheers!
    Ismael

    in reply to: Continue shopping button and number of products #197932

    Hey!

    1.) Please add this at the bottom of the code I gave you:

    .actions .button {
    display: block !important;
    }

    2.) Can you please give us a step by step instruction on how you encounter this issue?

    Best regards,
    Ismael

    in reply to: Ajax Portfolio – full width individual image #197929

    Hi jaroljmek!

    Do you want to remove the text on the right then adjust the portfolio featured image full width?

    Regards,
    Ismael

    in reply to: 1 of 3 portfolio categories not showing #197928

    Hey!

    Can you please deactivate the W3 Total Cache plugin first? Recreate the Portfolio Grid element.

    Best regards,
    Ismael

    in reply to: Background with white page floating above? #197926

    Hi!

    You can create a Layer Slider with different backgrounds transition. Create a page then insert the Layer Slider element. Below, add a Color Section for the content. Add a unique section id for the color section on “For Developers: Section ID” option, example “awesome-section”. Add this on your custom.css or Quick CSS to move the Color Section on top of the Layer Slider with different background images.

    #awesome-section {
    position: relative;
    top: -300px;
    z-index: 20;
    background: transparent;
    border-top: none;
    }

    Regards,
    Ismael

    in reply to: how to create the heading like the theme demo #197924

    Hi ShortieD!

    Use the Special Heading element under Content element panel.

    Best regards,
    Ismael

    in reply to: breadcrumb #197922

    Hi!

    The color of the text is white. You can change it using this:

    .breadcrumb.breadcrumbs.avia-breadcrumbs {
    color: red;
    }
    
    #top .alternate_color.title_container .main-title a {
    color: red;
    }

    Best regards,
    Ismael

    in reply to: Bigger Logo gets cut #197921

    Hi!

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

    @media only screen and (max-width: 767px) {
    .responsive .logo img {
    margin: 0 auto;
    max-width: 200px !important;
    min-width: 200px !important;
    position: relative;
    left: -5px;
    }
    }

    Remove browser cache then reload the page.

    Regards,
    Ismael

    in reply to: Can anyone recommend a community plugin? #197917

    Hi!

    We really recommend bbPress because Enfold theme has its own bbPress modifications. You can also try those plugin but we don’t fully support third party plugins.

    Best regards,
    Ismael

    in reply to: autocrop gallery or images #197915

    Hi!

    You can change the thumbnail size on Settings > Media > Thumbnail size to 200x200px. Regenerate the thumbnails using this plugin: http://wordpress.org/plugins/regenerate-thumbnails/

    Cheers!
    Ismael

    in reply to: best way to call new google font stylesheet #197911

    Hi!

    Use this instead:

    add_filter( 'avf_google_heading_font', 'avia_add_heading_font');
    function avia_add_heading_font($fonts)
    {
    $fonts['PT Sans Narrow'] = 'PT Sans Narrow:400,700';
    $fonts['PT Sans'] = 'PT Sans:400,700,400italic,700italic';
    return $fonts;
    }
    
    add_filter( 'avf_google_content_font', 'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
    
    $fonts['PT Sans'] = 'PT Sans:400,700,400italic,700italic';
    $fonts['PT Sans Narrow'] = 'PT Sans Narrow:400,700';
    return $fonts;
    }

    The PT Sans Narrow is at the very bottom of heading font. Please remove browser cache then reload the page after you selected the fonts.

    Best regards,
    Ismael

    in reply to: theme caching problem #197902

    Hi!

    The CSS takes effect immediately. Please try it on another browser. As you can see, I hid the header using the Quick CSS. Please remove it. http://www.acmena.com.au/

    Best regards,
    Ismael

    in reply to: Where to edit Tag Archival Page? #197899

    Hey sgrobert!

    The archive tag page is generated using the tag.php file and the search page use the includes > loop-search.php file. If you want a custom sidebar for the tag page. Edit tag.php, find this code:

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

    Replace it with:

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

    Edit sidebar.php, find this code:

    // forum pages sidebars
                if ($avia_config['currently_viewing'] == 'forum' && dynamic_sidebar('Forum') ) : $default_sidebar = false; endif;

    Below add this code:

    // archive pages sidebars
                if ($avia_config['currently_viewing'] == 'archive' && dynamic_sidebar('Archive') ) : $default_sidebar = false; endif;

    Edit includes > admin > register-widget-area.php, find this code:

    foreach ($sidebars_to_show as $sidebar)
    		{
    			register_sidebar(array(
    				'name' => 'Sidebar Pages',
    				'before_widget' => '<div id="%1$s" class="widget clearfix %2$s">', 
    			'after_widget' => '<span class="seperator extralight-border"></span></div>', 
    			'before_title' => '<h3 class="widgettitle">', 
    			'after_title' => '</h3>', 
    			));
    		}

    Below, add this Archive widget area:

    foreach ($sidebars_to_show as $sidebar)
    		{
    			register_sidebar(array(
    				'name' => 'Archive',
    				'before_widget' => '<div id="%1$s" class="widget clearfix %2$s">', 
    			'after_widget' => '<span class="seperator extralight-border"></span></div>', 
    			'before_title' => '<h3 class="widgettitle">', 
    			'after_title' => '</h3>', 
    			));
    		}

    You now add widgets on Archive widget area. Remove every widgets on Displayed Everywhere widget area. You can do the same on search.php file if you want a custom sidebar on search results page.

    Cheers!
    Ismael

    in reply to: 1 of 3 portfolio categories not showing #197896

    Hi LFE!

    Can you please post the login details here? Set it as a private reply.

    Best regards,
    Ismael

    in reply to: Animated Icon List #197892

    Hi!

    Have you tried deactivating all plugins? Please increase php memory limit: http://dailyblogging.org/wordpress/increase-wordpress-memory-limit/

    Best regards,
    Ismael

    in reply to: Square thumbnails on grid blog #197888

    Hey!

    Glad it worked. :)

    Regards,
    Ismael

    in reply to: Blog – Masonry #197688

    Hey!

    Glad you got it. :)

    Best regards,
    Ismael

    in reply to: Portfolio #197687

    Hey!

    I’m sorry but I don’t see anything on the link you gave us. All there is, is a black background and an incorrect image tag

    Regards,
    Ismael

    in reply to: HR padding #197686

    Hi!

    You can add a unique selector for each Avia Elements. Edit functions.php, find this code:

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

    Below, add this code:

    add_theme_support('avia_template_builder_custom_css');

    Edit any avia elements like Horizontal Rule then scroll below. Add a unique css selector on “Custom Css Class” field. For example, add “awesome-hr”.

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

    .awesome_hr {
    /* Add your Styles here */
    }

    Best regards,
    Ismael

    in reply to: Blog – Masonry #197676

    Hey!

    Deselect the page on Theme Options > Where do you want to display the Blog? option. Don’t select any page. Create a page then switch to Advance Layout Builder. Insert the Fullwidth Masonry, on “Which Entries?” option choose a post category. Publish the page.

    Regards,
    Ismael

    in reply to: Portfolio #197674

    Hey!

    Can you please give us a link to the page with the gallery?

    Cheers!
    Ismael

Viewing 30 posts - 61,951 through 61,980 (of 66,839 total)