Forum Replies Created

Viewing 30 posts - 57,871 through 57,900 (of 67,191 total)
  • Author
    Posts
  • in reply to: iPad formatting issue #276332

    Hey!

    Alright. Looks like it’s been taken care of. Add this code:

    @media only screen and (max-width: 989px) and (min-width: 768px) {
    .responsive .mobile_slide_out .logo {
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    }
    
    #advanced_menu_toggle {
    right: 0;
    top: 40%;
    }
    }

    Regards,
    Ismael

    in reply to: Gallery Edit Issues #276328

    Hi!

    Thank you for the update.

    I created a test page with the masonry gallery and I can still update or edit the gallery set when I edit the element. Just to test, I added a new full width masonry gallery on the link that you provided and it works fine. Check it here:

    http://www.stbarth.villas/wp-admin/post.php?post=3271&action=edit&message=6
    http://www.stbarth.villas/wp-admin/post.php?post=734&action=edit&message=1

    Please download the latest version 2.8.1 from your themeforest account then update the theme via FTP. Please refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/

    Regards,
    Ismael

    in reply to: Wrong menu path in URL bar, related to parent page #276327

    Hi!

    I tried to change the slug of the Apps page to apps but it somehow break the child pages. You just need to change it back to 3-apps to turn it back. Did you install any redirect plugin? Please try to remove it then change the slug and flush the permalink settings again.

    Cheers!
    Ismael

    in reply to: Wrong menu path in URL bar, related to parent page #276326

    Hi steed!

    Have you tried praying to Justin Bieber? :D

    After you purge the trash, try to go Settings > Permalinks then click the “Save” button once to flush the permalinks. If that doesn’t work, try to delete the .htaccess file then flush the permalink settings again.Edit the page then look for the Permalink below the title. Another thing that you can do is to click on the Screen Options while editing the page then enable and change the slug settings.

    Regards,
    Ismael

    in reply to: Blog post feature image #276237

    Hi Omer!

    Thank you for the update.

    You can edit functions.php, find this code on line 117:

    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>710, 'height'=>270);		                 // big images for blog and page entries
    

    Change the width and height attribute then set the crop parameter to false to prevent wp from cropping the featured image:

    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>1500 'height'=>540, 'crop'=> false);		                 // big images for blog and page entries
    

    Regenerate the thumbnails or upload it again.

    Cheers!
    Ismael

    in reply to: Separator/Whitespace problem #276235

    Hey!

    Glad we could help. If you have any questions, let us know. :)

    Best regards,
    Ismael

    Hi!

    Thank you for the update.

    We understand your hesitance about giving away the login credentials of the site but the issue that you’re having seems to be unique and we might need to debug it inside the site’s dashboard since we can’t recreate the issue on our installations. You can set the post as a private reply.

    Best regards,
    Ismael

    Hi!

    Let us know if it works. You can also try this:

    .html_header_top.html_logo_center.avia-msie .logo {
    left: 0;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    transform: none;
    }
    
    .html_header_top.html_logo_center.avia-msie .logo {
    position: relative;
    text-align: center;
    width: 100%;
    }
    
    .html_header_top.html_logo_center.avia-msie .logo img {
    -webkit-transform: initial;
    display: inline-block;
    }
    

    Regards,
    Ismael

    in reply to: Problem with lightbox in woocommerce #276228

    Hi!

    Glad Dude fixed it. :)

    Are you referring to the title on the left of the breadcrumb? Please use this on Quick CSS:

    .single-product h1.main-title.entry-title {
    display: none;
    }

    Regards,
    Ismael

    in reply to: Width of menu #276226

    Hey!

    Thank you for the update.

    Instead of specifying the width of the menu, you can increase the left and right padding of the menu items. Use this on Quick CSS or custom.css:

    .av-main-nav > li > a {
    padding: 0 29px;
    }
    
    .av-main-nav > li:last-child > a {
    padding: 0;
    }

    Regards,
    Ismael

    in reply to: Main menu, color background on one item #276225

    Hey!

    Thank you for the update.

    No, not the page id. The menu item id. If you use google chrome then inspect the menu item element, you’ll see that there are different menu item id.

    Regards,
    Ismael

    in reply to: Post Slider #276221

    Hi awilson3rd!

    Thank you for visiting the support forum!

    If you want to randomize the post slider query. Add this on functions.php:

    add_filter('avia_post_slide_query','avia_random_post_order', 10, 2);
    function avia_random_post_order($query, $params)
    {
    $query['orderby'] = 'rand';
    
    return $query;
    }

    Cheers!
    Ismael

    Hey!

    Thank you for the update.

    The image overlay effect’s top css inline style is set to 110px the first time you hover it, it should be 0px. We already reported the issue to Kriesi. Please wait for his response.

    Regards,
    Ismael

    in reply to: Image sizes and scaling #276214

    Hey AnnieCl!

    Thank you for using the theme!

    You can find all sorts of thumbnail size in the functions.php file. The theme automatically generate these thumbnails and use them accordingly — depends on the elements visible in a page or post. Please note that the Slideshow Image Size settings in the slider panel doesn’t actually influence the dimension of the sliders because the slider inherits the size of the container. It only enables you to choose the thumbnail size used in the slides.

    $avia_config['imgSize']['widget'] 			 	= array('width'=>36,  'height'=>36);						// small preview pics eg sidebar news
    $avia_config['imgSize']['square'] 		 	    = array('width'=>180, 'height'=>180);		                 // small image for blogs
    $avia_config['imgSize']['featured'] 		 	= array('width'=>1500, 'height'=>430 );						// images for fullsize pages and fullsize slider
    $avia_config['imgSize']['featured_large'] 		= array('width'=>1500, 'height'=>630 );						// images for fullsize pages and fullsize slider
    $avia_config['imgSize']['extra_large'] 		 	= array('width'=>1500, 'height'=>1500 , 'crop' => false);	// images for fullscrren slider
    $avia_config['imgSize']['portfolio'] 		 	= array('width'=>495, 'height'=>400 );						// images for portfolio entries (2,3 column)
    $avia_config['imgSize']['portfolio_small'] 		= array('width'=>260, 'height'=>185 );						// images for portfolio 4 columns
    $avia_config['imgSize']['gallery'] 		 		= array('width'=>710, 'height'=>575 );						// images for portfolio entries (2,3 column)
    $avia_config['imgSize']['magazine'] 		 	= array('width'=>710, 'height'=>375 );						// images for magazines
    $avia_config['imgSize']['masonry'] 		 		= array('width'=>705, 'height'=>705 , 'crop' => false);		// images for fullscreen masonry
    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>710, 'height'=>270);		                 // big images for blog and page entries
    $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1030, 'height'=>360 );						// images for fullsize pages and fullsize slider
    
    //overwrite blog and fullwidth image on extra large layouts
    if(avia_get_option('responsive_layout') == "responsive responsive_large")
    {
    	$avia_config['imgSize']['gallery'] 		 		= array('width'=>845, 'height'=>684 );					// images for portfolio entries (2,3 column)
    	$avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>845, 'height'=>321);		            // big images for blog and page entries
    	$avia_config['imgSize']['entry_without_sidebar']= array('width'=>1210, 'height'=>423 );					// images for fullsize pages and fullsize slider
    }

    You can adjust the width and height attribute, and choose not to cut the images by setting the crop parameter to false.

    Best regards,
    Ismael

    in reply to: updates / edits are ignored #276213

    Hey!

    Thank you for the update.

    I want to check the test page that I created but you removed it. I remember updating it over and I changed the content of the text block without any issue. I restore it from trash then edited the text block again without any problem: http://mara-events.de/cms/wp-admin/post.php?post=86&action=edit

    You might be able to fix the audio code by removing the inline style attribute.

    Regards,
    Ismael

    in reply to: Add a Photo\Icons to the top Bar or Header #276211

    Hey bzblocksmith!

    Thank you for using the theme!

    You can use html tags on the Phone Number or small info text field. Go to Enfold > Extra Elements then enable the Header Phone Number/Extra Info option. Add the tag on the field, something like this:

    <img src="ICON GRAPHIC URI HERE">
    

    Cheers!
    Ismael

    in reply to: Blog Post Not Showing – Enfold 2.8 #276210

    Hey!

    This is a weird issue. We’re still not sure why the post is not showing. I tried to override the single.php and loop-index.php with the original code and it’s still not working. What is your current PHP version? Please ask your host. If possible, please go to wp-content/plugins folder then rename or remove all the plugin folders. Test the post again.

    Regards,
    Ismael

    in reply to: Change menu header #276204

    Hi!

    Thank you for using the theme!

    First of all, you’re using an old version of the theme, 2.6.2. Please download the latest version from your themeforest account then update the theme via FTP. Please refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/

    You can re-arrange the menu items on Appearance > Menu panel. First, create a menu then set this menu as Enfold Main Menu on theme locations. Add this on functions.php if you want to redirect the logo to another page:

    add_filter('avf_logo_link', 'avf_redirect_logo_link');
    
    function avf_redirect_logo_link($link) {
    	$link = 'http://www.yourdomain.com';
    	return $link;
    }

    Change http://www.yourdomain.com value to something else.

    Regards,
    Ismael

    in reply to: tab load delay and accordion slideDown speed #276202

    Hi!

    Thank you for the info.

    You can manually select which js scripts to minify using the manual mode of the minify option. Please refer to this link for more info: http://uprankers.com/w3-total-cache-javascript-minification-troubleshooting/

    You should probably not include the shortcode.js file which holds the toggle script.

    Cheers!
    Ismael

    in reply to: iPad formatting issue #276200

    Hey!

    Alright. Please remove the left margins that you applied in your attempt to center align the logo and use this instead:

    @media only screen and (max-width: 768px) {
    strong.logo {
    float: none !important;
    }
    
    .responsive .logo a {
    margin: 0;
    padding: 0;
    float: none;
    }
    .responsive .logo img {
    margin: 0 auto;
    }
    }
    

    Regards,
    Ismael

    in reply to: Problem in tablet browser #276197

    Hey odmv91!

    Thank you for visiting the support forum!

    Looks like the section on top of the color section with the parallax effect got no background. Not sure if this is going to work but please do try it on Quick CSS or custom.css:

    .avia-android .av-parallax {
    z-index: 0;
    background-size: 100% 100%;
    }
    
    .main_color, .main_color .site-background, .main_color .first-quote, .main_color .related_image_wrap, .main_color .gravatar img .main_color .hr_content, .main_color .news-thumb, .main_color .post-format-icon, .main_color .ajax_controlls a, .main_color .tweet-text.avatar_no, .main_color .toggler, .main_color .toggler.activeTitle:hover, .main_color #js_sort_items, .main_color.inner-entry, .main_color .grid-entry-title, .main_color .related-format-icon, .grid-entry .main_color .avia-arrow, .main_color .avia-gallery-big, .main_color .avia-gallery-big, .main_color .avia-gallery img, .main_color .grid-content, .main_color .av-share-box ul, #top .main_color .av-related-style-full .related-format-icon, .main_color .related_posts.av-related-style-full a:hover {
    background: #f8f8f8;
    }

    Cheers!
    Ismael

    in reply to: Problem with lightbox in woocommerce #276194

    Hey!

    Thank you for the update.

    We’re really not sure why the lightbox is behaving that way but there are script errors on the console. Please try to deactivate all plugins then test it again. Post the login details here and set it as a private reply. Is it ok if we deactivate the plugins while debugging the website?

    Cheers!
    Ismael

    in reply to: How to get Vertical Gallery for portfolio Items #276192

    Hey!

    Thank you for the update.

    Did you regenerate the thumbnails? Go to Tools > Regen. Thumbs. The suggestion above should prevent the theme from cropping and resizing the gallery images on the ajax portfolio.

    Regards,
    Ismael

    in reply to: Separator/Whitespace problem #276191

    Hi!

    Thank you for the update.

    They look the same because of the default margin around the horizontal rule. You can remove those with this on Quick CSS or custom.css:

    body .container_wrap .hr.avia-builder-el-last, body .container_wrap .hr.avia-builder-el-first {
    margin: 0;
    }

    Regards,
    Ismael

    in reply to: Client Friendly user interface #276190

    Hey KK!

    Thank you for using the support forum!

    Can you please elaborate a little bit? I don’t think there are any plugins available that can simplify the Enfold’s theme options. You need to manually edit the theme code in order to modify the theme options. Unfortunately, this is beyond the scope of support.

    Regards,
    Ismael

    in reply to: Make bolded text black color (instead of theme color) #276188

    Hey!

    That’s alright. If you have any questions, let us know. Note that you can also use the Quick CSS field in order to modify some of the theme’s elements. For example:

    strong {
    color: black;
    }

    Cheers!
    Ismael

    in reply to: Main menu, color background on one item #276187

    Hi Emmanuelppp!

    Thank you for using the theme!

    You can start with this, just change the menu item id:

    li#menu-item-3018 a {
    background: red;
    height: 30px !important;
    line-height: 30px !important;
    color: white;
    margin-top: 30px;
    }
    
    .header-scrolled li#menu-item-3018 a {
    margin-top: 8px;
    }

    Change the 3018 id. You need to play around with the top margin if you set a different header height.

    Best regards,
    Ismael

    in reply to: Changing font sizes and case #276185

    Hey!

    Alright. Please use this:

    .template-page .entry-content-wrapper h2 {
    text-transform: none;
    }

    For h1 tags, this will work:

    .template-page .entry-content-wrapper h1 {
    text-transform: none;
    }

    Regards,
    Ismael

    in reply to: Related posts #276184

    Hey!

    @Emmanuel: Thanks for helping out!


    @boldtranquility
    : Emmanuel is right, you need to add tags on posts if you want the related posts section to show.

    Regards,
    Ismael

    in reply to: Problem With Images #276182

    Hi raveon!

    Thank you for using the theme!

    The Add Media button should be working. Please post the website url here, we would like to check it. Make sure that you’re running Enfold 2.8.1 with WordPress 3.9 or higher. You can right align an image by adding the alignright class or selector attribute. Another thing that you can do is to add column layout, for example, add 3 1/3 column layout. Add the image element on the last or 3rd 1/3 column to position the image or align it to the right.

    Regards,
    Ismael

Viewing 30 posts - 57,871 through 57,900 (of 67,191 total)