Forum Replies Created

Viewing 30 posts - 6,901 through 6,930 (of 14,834 total)
  • Author
    Posts
  • in reply to: Zoho form styling in enfold #453973

    Hey potentialindia!

    If you’d like we can give you some CSS to remove the table cell backgrounds and right align the labels so they appear next to the fields. If your trying to make it look exactly like ours though then it’s going to take quite a bit of work in the plugin code (to remove the tables, etc etc) and would have to be considered custom work.

    Cheers!
    Elliott

    in reply to: Add menu item indicators #453969

    Hi RickLodder!

    When you say the menu item indicators your talking about the red line beneath them when hovering correct?

    If so then try adding this to your custom CSS.

    .menu-item a:hover .avia-menu-fx { display: block !important; }
    

    If that’s not what your trying to do then send us a link and take a screenshot highlighting your intentions so we can get a better idea.

    Best regards,
    Elliott

    in reply to: Add custom icons in header area #453962

    Hey Fred!

    It looks like your adding the icons inside the menu links with HTML. You can do this but it would take a bit of CSS work. I think it would be a lot easier to just add a widget area to your header and then drag a text widget to it and place the HTML inside that instead.

    See here for how to add a widget area to your header, http://kriesi.at/documentation/enfold/adding-a-widget-area-to-the-header/.

    Regards,
    Elliott

    in reply to: Site content not matching site dimensions #453959

    Hey summerswim!

    It’s displaying as 960px on my end. Keep in mind that there is 50px padding on each side for most sections.

    Cheers!
    Elliott

    Hey Renvato2!

    Private posts are only visible to admins and editors. Perhaps your wanting to make it password protected instead?

    https://codex.wordpress.org/Content_Visibility

    Cheers!
    Elliott

    in reply to: Shop Page Product Title Container Resize #453952

    Hi!

    Are you wanting the second line to not break so it continues onto the third column? That would look kind of weird I would think. Go ahead and send us a link to your page please.

    Regards,
    Elliott

    • This reply was modified 10 years, 8 months ago by Elliott.
    in reply to: Blog Display Problems (Excerpt and Sharing Buttons) #453950

    Hey AJDesignCo!

    The advanced layout editor is for users who need complete control over how their content displays which is why we strip out all of the regular post meta, featured image, sharing, etc etc.

    We do have a “social share buttons” element that you can add to your page content though when using the layout builder.

    Best regards,
    Elliott

    in reply to: Floating menu always jumps to top #453943

    Hi!

    When I comment out that line on my XAMPP setup it does not jump anymore but the menu stays to the top so it would require some CSS to give it a fixed position, etc etc.

    I was thinking you would need to add the function(e) { e.preventDefault(); } to prevent the link behaviour from jumping to the top but just commenting out that line I posted seems to work on my end.

    Did you clear your browser cache and any caching related plugins you might have installed?

    Best regards,
    Elliott

    • This reply was modified 10 years, 8 months ago by Elliott.
    in reply to: CONTROL SPACE LETTER FULL WIDTH SUB MENU #453940

    Hey!

    Your trying to limit the width so you can fit the whole alphabet on line line correct? Try adding this to your custom CSS.

    #top .av-subnav-menu > li > a { padding: 0px 5px !important; }
    

    To give it a fixed position on mobiles try adding this.

    @media screen and (max-width: 767px) {
    .responsive #top .av-submenu-container { position: fixed !important; top: 0px !important; }
    }

    Regards,
    Elliott

    in reply to: Problem with universal colour #453935

    Hey!

    I checked your link but I’m still not sure which elements your trying to change. Can you take a screenshot and highlight the exact changes your trying to do?

    If your trying to target the homepage iconbox elements separately then you can do so with this CSS.

    .home .iconbox_content { background: red !important; }
    

    Best regards,
    Elliott

    • This reply was modified 10 years, 8 months ago by Elliott.
    in reply to: login and registration page #453933

    Hi!

    For login and register links above your logo navigate to Dashboard > Enfold > Header > Extra elements and set the header secondary menu option to display to the left above the logo.

    Next navigate to Dashboard > Appearance > Menus and create a new menu and add two custom links to it. Save the menu to the secondary menu position and for the link URLs set them to this.

    yoursite.com/wp-login.php
    yoursite.com/wp-login.php?action=register
    

    Best regards,
    Elliott

    in reply to: Header with three logo #453932

    Hey Evedd!

    Go ahead and add the phrase as a text widget in the widget area you already setup and let us know when your done and we’ll give you some CSS to align it to the right side of your page.

    Cheers!
    Elliott

    in reply to: Archives: Featured Image and Excerpt #453923

    Hi!

    Sorry, didn’t think of that. Revert the change and then add this beneath it on line 31.

    if (!is_single()) { $blog_content = "excerpt_read_more"; }
    

    Best regards,
    Elliott

    in reply to: AJAX Search Z Index Issue #453917

    Hi!

    It was not meant to be used in that area. What you can do is set the position to relative so it expands that section instead of displaying beneath the other sections.

    .widget .ajax_search_responsive { position: relative !important; }
    

    Best regards,
    Elliott

    in reply to: Catalogue shortcode, multiple prizes #453305

    Hi joransrb!

    If it was me I would just add both prices in the same field like so, “$10 – $16”.

    What are the exact changes your doing?

    Cheers!
    Elliott

    in reply to: Submenu to the section on the page on mobile devices #453299

    Hey!

    You could increase the 767px value to target the iPad screen width or just do this.

    #wrap_all { position: relative !important; }
    

    Cheers!
    Elliott

    • This reply was modified 10 years, 8 months ago by Elliott.
    in reply to: Facebook Like Button not showing. #453295

    Hi jayne919!

    I see it in your sidebar. Did you get this sorted?

    If you still do not see it then try clearing your browser cache.

    Regards,
    Elliott

    in reply to: Issue adding Google Fonts #453290

    Hi!

    It looks like you currently have Raleway selected and it seems to be loading fine. Is there a certain area that your wanting to change?

    For additional fonts and weights it’s the same process.

    add_filter( ‘avf_google_heading_font’, ‘avia_add_heading_font’);
    function avia_add_heading_font($fonts)
    {
    $fonts[‘Source Sans Pro’] = ‘Source Sans Pro:400,600,800′;
    $fonts[‘Raleway’] = ‘Raleway:400,600,800′;
    return $fonts;
    }
    
    add_filter( ‘avf_google_content_font’, ‘avia_add_content_font’);
    function avia_add_content_font($fonts)
    {
    $fonts[‘Source Sans Pro’] = ‘Source Sans Pro:400,600,800′;
    $fonts[‘Raleway’] = ‘Raleway:400,600,800′;
    return $fonts;
    }

    Best regards,
    Elliott

    in reply to: Blog Post IMAGES #453283

    Hey Justin!

    Whenever you use our image element then click on the “Link settings” tab and you can set the link to the post permalink.

    If your inserting the images with the add media button then you can set the link that way as well. For just plain HTML then it would look like this.

    <a href = "URL to your post">
    <img src = "URL to your image" />
    </a>

    Best regards,
    Elliott

    in reply to: moving #av_section_1 on single product page. #453281

    Hi Clydeo!

    It sounds like your talking about line 957 in the /enfold/config-woocommerce/config.php file.

    #
    # display upsells and related products within dedicated div with different column and number of products
    #
    remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_related_products',20);
    remove_action( 'woocommerce_after_single_product', 'woocommerce_output_related_products',10);
    add_action( 'woocommerce_after_single_product_summary', 'avia_woocommerce_output_related_products', 20);
    
    function avia_woocommerce_output_related_products($items = false, $columns = false)
    {
    	global $avia_config;
    	$output = "";
    	
    	if(!$items) 	$items 	 = $avia_config['shop_single_column_items'];
    	if(!$columns) 	$columns = $avia_config['shop_single_column'];
    
    	ob_start();
    	woocommerce_related_products(array('posts_per_page'=>$items, 'columns'=>$columns)); // X products, X columns
    	$content = ob_get_clean();
    	if($content)
    	{
    		$output .= "<div class='product_column product_column_".$columns."'>";
    		//$output .= "<h3>".(__('Related Products', 'avia_framework'))."</h3>";
    		$output .= $content;
    		$output .= "</div>";
    	}
    
    	$avia_config['woo_related'] = $output;
    	return $output;
    
    }

    Best regards,
    Elliott

    Hey!

    That is going to take a lot of time and code and would have to be considered custom work. It would be best to hire a freelancer to help you out with creating a custom product template to use.

    But to answer your question the PHP file that is used to display the single product view is in /wp-content/plugins/woocommerce/templates/single-product.php.

    Best regards,
    Elliott

    in reply to: Floating menu always jumps to top #453271

    Hi PG!

    You could try commenting out line 444 in the /enfold/js/avia.js file.

    win.scrollTop(0);
    

    But you will probably need to add some CSS to the mobile menu so it gets a fixed position like how your currently doing. Also keep in mind that this will not let you scroll down in case the menu is long or the screen very small.

    Cheers!
    Elliott

    in reply to: Beitragsbild, feature pic #453253

    Hey Alex!

    It’s because your using the advanced layout editor on that post. When using the layout builder you’ll need to set the post manually. It’s for users who need complete control over how their post displays.

    Otherwise it would be best to just use the general editor if you want the posts to be displayed like usual.

    Regards,
    Elliott

    in reply to: PagesSpeedInsights: compressing and image resizing #453250

    Hey Manuel!

    Your image sizes look fine to me. Your image of the water and storm is 263KB. I would try resizing that down to 1500 x ? at least. It will still look good and will reduce the filesize quite a bit.

    Cheers!
    Elliott

    • This reply was modified 10 years, 8 months ago by Elliott.

    Hey fnvaworld!

    Let’s try the following.

    1. Deactivate all plugins.

    2. Completely delete Enfold from your WordPress theme directory before downloading + uploading a fresh copy from themeforest.

    3. Create a copy of your .htaccess file and then delete it from your WordPress theme directory and then refresh your permalinks in Dashboard > Settings > Permalinks.

    If your still having trouble after doing the above three steps then send us a WordPress login and we’ll take a closer look.

    Regards,
    Elliott

    in reply to: More image sizes in folder than available to insert #453234

    Hey scotthco!

    How big is the image that your uploading? If for example it’s only 400 x 400 then only the “Thumbnail” and “Medium” sizes will be selectable. If you upload a larger image then you should be able to use the other sizes as well.

    Cheers!
    Elliott

    in reply to: Category and Author in Magazine #453222

    Hey!

    Hmm, are you sure there is a category assigned? I tried checking your link again but I did not see any magazine elements in the page.

    Best regards,
    Elliott

    in reply to: Portfolio title preview and Ajax Preview title size #453221

    Hi RobPhrase!

    Try adding this to your custom CSS.

    .grid-entry-title a { font-size: 20px !important; }
    .portfolio-preview-title a { font-size: 20px !important; }
    

    Best regards,
    Elliott

    in reply to: Google Adwords Conversion onclick #453218

    Hey alexander-_-!

    Are you trying to add it to an iconbox so it gets run when you click on the icon? Can you send us a link to your page so we can take a closer look?

    Cheers!
    Elliott

    in reply to: backgrounds and some content missing Windows mobile #453209

    Hey!

    Your trying to get it to a fixed position on larger screens only? In this case in your media query you’ll want to use min-width instead of max-width like so.

    @media only screen and (min-width: 480px) {
    

    That will target screen widths bigger than 480px.

    Regards,
    Elliott

Viewing 30 posts - 6,901 through 6,930 (of 14,834 total)