Forum Replies Created
-
AuthorPosts
-
February 16, 2015 at 6:41 pm in reply to: Photography template sidebar submenu align to sidebar vertical line #396914
Hi royaltask!
1. Add this to your custom CSS.
.html_header_sidebar #header .av-main-nav > li { margin-right: 0px !important; }2. Your trying to have the sub menus display all the time without hovering?
3. It should be a different color by default. Send us a link and we’ll take a look.
Cheers!
ElliottHi!
Send us a WordPress login and we’ll take a look. Be sure to set your reply as private.
Best regards,
ElliottFebruary 16, 2015 at 6:32 pm in reply to: when choosing boxed layout header and sidebar displayed wrong #396897Hi Misko!
Your markup is looking kind of weird. Let’s try the following.
1. Create a backup of your theme options in Dashboard > Enfold > Import/Export and the hit the “Reset All Options” button to see what happens.
2. Completely delete Enfold from your WordPress theme directory before downloading + uploading a fresh copy from themeforest.
Cheers!
ElliottHey audiotech520!
There just isn’t enough space on small mobile devices to display a table in columns which is why we set them to one column and place a label at the top of each cell.
Would you like to try hiding the table on mobiles?
Regards,
ElliottHey!
The best way to optimize a WordPress site is to use a caching plugin.
I think Kriesi uses the BWP minify plugin, https://wordpress.org/plugins/bwp-minify/, which will minify the JS and CSS so they download faster.
Regards,
ElliottHey!
1. Yes, just click on it and it will insert whatever elements you have saved.
2. It doesn’t work like that. You will need to create a new template.
Best regards,
ElliottHey!
What this code does is allow the “Featured Image” option for whatever posts you set it for. We already call it on line 256 in /enfold/functions-enfold.php.
add_theme_support( 'post-thumbnails' );So you shouldn’t need to call it again.
Is the problem that you created some custom post types but are unable to set their featured image? Perhaps you need to set the “supports -> thumbnails” option when you register the post type, http://codex.wordpress.org/register_post_type.
Regards,
ElliottHey tludwig!
What I would do is add the text into the contact form itself by adding a new element to the form and setting it’s type to “Custom HTML”. You can type out anything you need to display in this element and when the form is submitted it will disappear along with the other elements.
Best regards,
ElliottFebruary 16, 2015 at 6:03 pm in reply to: Mash Between Masonry Blog with Blog Post Grid Layout #396866Hey!
The Masonry has an option for changing the image sizes. You can set it to “Perfect grid” and play around with the columns to get the sizing you want. You can place the Masonry inside column shortcodes to change the overall size as well.
Regards,
ElliottFebruary 16, 2015 at 6:01 pm in reply to: Future request: One page – changing hashtags in url to history.pushState #396863Hi Mariusz!
I don’t think that would be possible. Especially if a user has just visited your site and has no pages in their history.
Regards,
ElliottHi nicsans!
Try adding this to your custom CSS.
.more-link-arrow { display: none !important; }If that’s not working then send us a link to your page and we’ll take a look.
Regards,
ElliottHey koken13!
Try adding this to the bottom of your functions.php file.
add_filter( 'avf_portfolio_cpt_args', 'enfold_customization_revisions', 1 ); function enfold_customization_revisions( $args ) { $args['supports'] = array( 'title', 'thumbnail', 'excerpt', 'editor', 'comments', 'revisions' ); return $args; }Regards,
ElliottHi!
Can you copy and paste the exact errors your getting?
1. For the viewport issue we include that meta tag on line 35 in the header.php file.
if( strpos($responsive, 'responsive') !== false ) echo '<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">';2. See here, https://developers.google.com/speed/docs/insights/UseLegibleFontSizes. You’ll probably need to change the CSS around quite a bit to satisfy Google. Honestly they are being kind of anal about this so I wouldn’t care about it too much as long as your satisfied with how it looks on your device. You cannot always trust online testing tools, it’s a program and programs have bugs.
3. Touch elements too close – this is the same thing. It’s way too vague of a description to figure out what to do. You could spend a couple of days playing around with your margins to try and satisfy Google. If it really matters then you’ll want to hire a Google mobile expert for this.
4. Content not sized to viewport – This is probably referring to our shopping cart dropdown which we use CSS to hide on the ride side of the page. Google probably thinks this is causing a horizontal scroll bar but we have overflow set to hidden so it displays nicely for mobile users. If you want to remove the shopping cart dropdown then we can try that.
Regards,
Elliott-
This reply was modified 10 years, 11 months ago by
Elliott.
Hi!
I don’t see it on my end and Ismael mentioned he cannot see it either. Try checking on a different device to see if it happens there as well.
Regards,
ElliottFebruary 16, 2015 at 5:22 pm in reply to: Layout issues! Width of layout on all pages has blown out to full screen #396838Hey!
I can login to your site but anytime I try to view anything on the front end it asks me for another password.
Also send us a link to the exact page please.
Cheers!
ElliottHey!
You could do something like this, https://kriesi.at/support/topic/creating-a-custom-templatemenu/#post-372799.
But to check for a portfolio category then you would could try using this conditional check, http://codex.wordpress.org/Function_Reference/is_post_type_archive, instead of is_page().
Cheers!
Elliott-
This reply was modified 10 years, 11 months ago by
Elliott.
February 16, 2015 at 5:13 pm in reply to: Layer slider slideshow seemless transition settings… #396827Hey!
To get those text effects you used a bunch of CSS in the LayerSlider styling tab correct? To apply it on our fullwidth easy slider you can use this CSS.
/* the title */ .slideshow_caption h2 { } /* the caption */ .slideshow_caption .avia-caption-content { }Best regards,
ElliottFebruary 16, 2015 at 5:10 pm in reply to: slideshow, clicking on thumbnails changing pics and its names. #396824Hi!
1. Can you take a screenshot of the problem? What CSS are you using?
2. Did you get this sorted? I’m seeing 6 columns on my end.
Regards,
ElliottHi!
Open up /enfold/includes/loop-index.php and change line 8 from this.
$blog_content = !empty($avia_config['blog_content']) ? $avia_config['blog_content'] : "content";To this.
$blog_content = !empty($avia_config['blog_content']) ? $avia_config['blog_content'] : "excerpt";The featured images should be displaying automatically. Double check to make sure you have some set to your posts.
Cheers!
ElliottHi Paul!
We could give you some CSS to add some margin on one of your menu items to create a space for the logo and then move the logo to the left.
The problem here is that if you add more items to your menu then you would have to adjust the CSS again.
Send us a link to your page and we’ll take a look.
Best regards,
ElliottFebruary 15, 2015 at 5:48 pm in reply to: Changing the Secondary Menu Backgorund color and font color #396428Hi dmpitzer!
Try adding this to your custom CSS.
#avia2-menu a { background: none repeat scroll 0 0 #719430; border-radius: 2px; color: white; padding: 10px; }Regards,
ElliottHey NicRW!
You could use our contact forms but our forms only have the feature of sending email currently. If you need to collect email addresses for a mailing list then I would check into the Contact Form 7, Gravity Forms, or Mailchimp plugins to see if they have that feature.
Cheers!
ElliottHi romero2!
You have a contact form in your portfolio post but you are not receiving emails? Does it work in a page?
Try deactivating all plugins and send us a link to your post and we’ll send you a test email.
This is usually a problem with the server though so I would contact your hosting provider and let them know your having trouble receiving emails. Also try installing this plugin, https://wordpress.org/plugins/wp-smtp/, and send a test email there to see if it works.
Regards,
ElliottHey jasrobb!
When you edit your page there is a template button which you can use to save templates and load them again later.

Cheers!
ElliottHi summersalad!
Use a color section and then inside add 1/3 + 1/3 + 1/3 columns and then inside each column use an icon box element.
Best regards,
Elliott-
This reply was modified 10 years, 11 months ago by
Elliott.
Hi NicRW!
It looks like the sizes are being changed by a plugin.
If you want to use some CSS then drag a codeblock element to that page and add this inside.
<style type = "text/css"> .avia_textblock { font-size: 12px !important; } </style>Cheers!
ElliottFebruary 15, 2015 at 5:33 pm in reply to: HELP – I edited the file avia_which_archive function and my site broke! #396413Hey pozza!
I’m not really sure what you mean there but send us a link to your page and take a screenshot highlighting the exact area your wanting to customize and we’ll take a look.
You can set your reply as private if you wish.
Cheers!
ElliottFebruary 15, 2015 at 5:32 pm in reply to: Global background image in Theme Options – Styling menu? #396412Hey factor6!
In the same area scroll down a bit and then click on the “Body Background” tab. Each of the tabs in that area has a background image option where you can set backgrounds for each area.
Regards,
ElliottHi LauraRoossien!
They should be displaying, http://kriesi.at/themes/enfold/portfolio/portfolio-3-column/.
When you edit the portfolio shortcode options make sure you have the “Title and Excerpt” set on the “Excerpt” option.
Cheers!
ElliottFebruary 15, 2015 at 5:26 pm in reply to: Header with big Logo and menu right – hover effect "gap" #396406Hey Peter!
Try adding this to your custom CSS.
.avia-menu-fx { bottom: 40px !important; }Regards,
Elliott -
This reply was modified 10 years, 11 months ago by
-
AuthorPosts
