Forum Replies Created
-
AuthorPosts
-
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!
ElliottHi 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,
ElliottHey 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,
ElliottHey summerswim!
It’s displaying as 960px on my end. Keep in mind that there is 50px padding on each side for most sections.
Cheers!
ElliottJune 3, 2015 at 5:21 pm in reply to: Need only one of my webpages not show up as a menu item on my website #453956Hey 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!
ElliottHi!
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.
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,
ElliottHi!
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.
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,
ElliottHey!
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.
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=registerBest regards,
ElliottHey 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!
ElliottHi!
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,
ElliottHi!
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,
ElliottHi 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!
ElliottHey!
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.
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,
ElliottHi!
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,
ElliottHey 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,
ElliottHi 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,
ElliottJune 2, 2015 at 6:05 pm in reply to: WooCommerce product price on single page not showing with advanced editor #453277Hey!
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,
ElliottHi 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!
ElliottHey 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,
ElliottHey 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.
June 2, 2015 at 5:36 pm in reply to: Having problem with Enfold theme Blog Post, Grid Layout Pagination problem #453243Hey 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,
ElliottHey 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!
ElliottHey!
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,
ElliottHi 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,
ElliottHey 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!
ElliottHey!
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 -
This reply was modified 10 years, 8 months ago by
-
AuthorPosts
