Forum Replies Created
-
AuthorPosts
-
Hey Atlasoid!
Are you trying to create a blog list of your posts? If so then create a new page and click on Magic Wand -> Content Elements -> Blog Posts and configure all of the settings and save. This will display a list of your posts and their featured image.
If that’s not what you were trying to do then go ahead and send us a link and take a screenshot so we can get a better idea.
Best regards,
ElliottHi kenwae!
It looks like your missing some CSS rules. I think this is because you have the CSS minified. Try deactivating all of your plugins and then clear your browser cache to see if it displays correctly. If so then reactivate your plugins one by one to see which one is causing the issue.
Cheers!
ElliottHi!
Navigate to Dashboard -> Appearance -> Menus and under your menu find the custom Home link you have created and click on the dropdown icon to view it’s settings. Under the “Menu Style” setting make sure you have the “Default Style” option selected.
Or if your just wanting to get rid of it completely then click on the “Remove” link near the bottom.
Best regards,
Elliott- This reply was modified 10 years ago by Elliott.
Hey!
I checked your http://www.rpmpin.com/search-rentals/ page but the search form is displaying on both sites for me. The only difference I see is that one of them has 18 available properties and the other has 36. Did you get this sorted? If you still cannot see it then try clearing your browser cache and any caching plugins you may have installed.
It would also be great if you could take a screenshot of what your seeing so we can get a better idea of what’s going on.
Best regards,
ElliottHi!
Try deleting your .htaccess file and then save your permalinks under the default setting to see if it works. If it does then try the /%postname%/ setting.
When you save your permalinks pay special attention to any messages that WordPress sends out such as the .htaccess file not being writable, etc etc.
Best regards,
ElliottHey!
Try dragging over a text block and then in the editor add this around your text.
<div style = "background: red;"> </div>
Is what what you were trying to do? If not then go ahead and send us a link and take a screenshot highlighting what your trying to do so we can get a better idea.
Regards,
ElliottHey!
There is probably an easier way to do this but I could not think of it.
Try adding both the large and compact testimonials to your page and then switch to the Text editor and add this to the bottom,
<style type = "text/css"> .avia-testimonial-wrapper { display: none !important; } .av-large-testimonial-slider { display: block !important; } @media only screen and (max-width: 767px) { .avia-testimonial-wrapper { display: block !important; } .av-large-testimonial-slider { display: none !important; } } </style>
What that will do is display the large testimonial and hide the compact until the screen width hits below 767px and then it will switch them.
As for the font size looking weird go ahead and send us a link and we’ll take a look. You can make it private in your reply if you wish.
Regards,
Elliott- This reply was modified 10 years ago by Elliott.
Hi!
Switch to the Text editor and add this to the bottom.
<script type = "text/javascript"> jQuery('.av-masonry-container a').attr('target', '_blank'); </script>
If your using the Masonry Gallery then that will have the custom links open in a new window.
Regards,
ElliottHey Marie!
1. If your wanting to move your menu down then go ahead and remove the custom CSS your using and add this instead,
.main_menu { top: 40px; }
That will move the menu down and leave your dropdown links alone.
2. If your just trying to change the default and hover colors of your menu items then no custom CSS is needed. Navigate to Dashboard -> Enfold -> Advanced Styling and select the main menu and sub menu links. You can change their default and hover colors here.
Best regards,
ElliottHi boost2business!
Do you mean can you use shortcodes inside the mega menu like as shown in the ubermenu demo? It would depend on the shortcode but yes you can. For example an icon shortcode would display fine but if your trying to display portfolio posts then there is just not enough space, etc etc.
Go ahead and watch this tutorial first, http://vimeo.com/channels/aviathemes/92503669, and then when you create a link for your mega menu you can insert HTML and shortcodes into the description field.
Best regards,
Elliott- This reply was modified 10 years ago by Elliott.
Hey Addison!
If your wanting to have the links automatically zoom in on the map in the current page then that would take a lot of time and code and would have to be considered custom work. That is a cool feature though so feel free to add it to our feature requests, https://kriesi.at/support/enfold-feature-requests/.
In the meantime what you can do is create a link directly to the address on the google maps website. This will show you how, http://gearside.com/easily-link-to-locations-and-directions-using-the-new-google-maps/.
Regards,
ElliottNovember 1, 2014 at 2:56 pm in reply to: Enfold – Is it possible to use multiple blog layouts on different categories? #344577Hey foxvendetta!
When you create a new page click on Magic Wand -> Content Elements -> Blog Posts and then fill out the shortcode options. The second option you’ll see is for displaying only posts within certain categories. You can do this for any amount of pages you wish. The masonry shortcode has the same option.
Cheers!
Elliott- This reply was modified 10 years ago by Elliott.
Hey Pappasdg!
When you edit your post look on the right hand side under Layout settings and you’ll see an option for “Header visibility and transparency” which you can set that to “Transparent Header”.
Best regards,
ElliottNovember 1, 2014 at 3:25 am in reply to: How would I add 3px semi-transparent black border around all images in body? #344456Hey koala!
Add this in Dashboard -> Enfold -> General Styling -> Quick CSS,
main img { border: 3px solid black !important; padding: 0px !important; }
Cheers!
ElliottHey mjpjmp!
I noticed some weird CSS in your layout.css file which is causing the issue. This could be because your using Enfold version 3.0. Go ahead and update to the latest version and if the problem does not rectify itself then let us know and we’ll take another look.
Best regards,
Elliott- This reply was modified 10 years ago by Elliott.
November 1, 2014 at 3:12 am in reply to: Keep the hover color always on / Social Icons in Header #344447Hi MMA_Impact!
Open up
/enfold/css/layout.css
and starting on line 1110 you will see the CSS for the social icon hovers,#top #wrap_all .av-social-link-rss:hover a{color:#fff; background-color:#ffa133; }
What you can do is remove the :hover part like so,
#top #wrap_all .av-social-link-rss a{color:#fff; background-color:#ffa133; }
Regards,
ElliottHey Julie!
Try adding this into your
wp-config.php
file,define('WP_DEFAULT_THEME', 'child_theme_folder_name');
And change “child_theme_folder_name” with the folder name of your child theme. As for the settings I do not know of a way to do this. You can use the import / export options in Dashboard -> Enfold -> Import / Export to copy the theme settings from your parent site to your sub sites though.
Regards,
Elliott- This reply was modified 10 years ago by Elliott.
November 1, 2014 at 2:17 am in reply to: "Teile diesen Beitrag" unter "Hinterlasse einen Kommentar" im single Post… #344429Hey CBessler!
Open up
/enfold/includes/loop-index.php
and comment out line 212,//avia_social_share_links();
Next open up
/enfold/single.php
and on line 43 you should see this,comments_template();
Add this beneath it,
?> <div style = "padding-right: 50px; height: 120px;"> <?php avia_social_share_links(); ?> </div><?php
Cheers!
ElliottNovember 1, 2014 at 2:01 am in reply to: Scaling / Fitting Image by Both Specific Width and Heigh #344422Hey Georgi!
If you scale both the width and height then the image may start to lose quality and display blurry. The common practice for this is to set the width to a percentage and the height to auto so quality is preserved. Go ahead and send us a link so we can get a better idea of the problem. You can mark your reply as private if you wish.
Best regards,
Elliott- This reply was modified 10 years ago by Elliott.
November 1, 2014 at 1:54 am in reply to: How do I change the background color for a single page? #344419Hey stepheng!
Are you just trying to change the background color for the content and not the header or footer? If so then try adding this to the text editor of your page.
<style type = "text/css"> #main .container_wrap_first { background: red; } </style>
If that’s not what you were wanting then go ahead and take a screenshot and highlight what your trying to do so we can get a better idea.
Best regards,
ElliottNovember 1, 2014 at 1:46 am in reply to: moving styles to child theme, styles & menu are all broken #344417Hi snackd!
Try adding !important to each of your CSS rules like so,
a { color: red !important; }
Go ahead and send us a link and we’ll take a closer look.
Regards,
ElliottHi prettyninja!
Try deactivating all plugins and switch the theme to the default and back to enfold. If your still having problems then reply here with login information and mark it as private and we’ll take a closer look.
Regards,
ElliottHi GOWD!
Did you get this sorted? I viewed your link but the facebook widget has a white background and the google map is displaying fine. If your still seeing issues then try clearing your browser cache and any caching plugins you may have installed.
Best regards,
ElliottHi xyzb!
Which shortcodes are you using? Go ahead and send us a link and we’ll take a look. You can mark your reply as private if you wish.
Regards,
ElliottHey connect4consulting!
Open up
/enfold/searchform.php
and on line 17 you should see this,$icon = av_icon_char('search');
You can change the “search” text to another entypo icon. You can find a list of all of the icons in
/enfold/functions.php
starting on line 154,'standard' => array( 'font' =>'entypo-fontello', 'icon' => 'ue836'), 'link' => array( 'font' =>'entypo-fontello', 'icon' => 'ue822'), 'image' => array( 'font' =>'entypo-fontello', 'icon' => 'ue80f'),
Let us know if that works for you.
Regards,
Elliott- This reply was modified 10 years ago by Elliott.
Hey Prescott!
Try opening up
/enfold/includes/loop-index.php
and find lines 88 – 93,//echo preview image if(strpos($blog_style, 'big') !== false) { if($slider) $slider = '<a href="'.$link.'" title="'.$featured_img_desc.'">'.$slider.'</a>'; if($slider) echo '<div class="big-preview '.$blog_style.'">'.$slider.'</div>'; }
And move them down to line 184 so they are just above this,
// echo the post content echo '<div class="entry-content" '.avia_markup_helper(array('context' => 'entry_content','echo'=>false)).'>'; echo $content; echo '</div>';
Since your using a child theme you should be able to copy the
/includes/
folder from enfold into your child theme folder and then do the edit to the index-loop.php file.Let us know if that works for you.
Regards,
Elliott- This reply was modified 10 years ago by Elliott.
Hey DROR!
Try adding this in Dashboard -> Enfold -> General Styling -> Quick CSS,
article.post .post-title { color: red !important; }
Regards,
ElliottNovember 1, 2014 at 12:56 am in reply to: changing the icons on ajax portfolio preview container #344399Hi susiepark88!
Are you wanting to change the icon to another entypo icon? If so then open up
/enfold/config-templatebuilder/avia-shortcodes/portfolio.php
and starting on line 367 you’ll see this,<a href='#prev' class='ajax_previous' ".av_icon_string('prev')."></a> <a href='#next' class='ajax_next' ".av_icon_string('next')."></a> <a class='avia_close' href='#close' ".av_icon_string('close')."></a>
Replace the “prev”, “next”, and “close” with whatever icon you want. You can find the names in
/enfold/functions.php
starting on line 154,'standard' => array( 'font' =>'entypo-fontello', 'icon' => 'ue836'), 'link' => array( 'font' =>'entypo-fontello', 'icon' => 'ue822'), 'image' => array( 'font' =>'entypo-fontello', 'icon' => 'ue80f'),
Regards,
Elliott- This reply was modified 10 years ago by Elliott.
Hey aminomar!
Try this out,
.avia_ajax_form .button { display: block !important; margin: 0px auto !important; }
Best regards,
ElliottHey aecad!
1. Click on the magic wand when editing your page and then select Layout Elements -> 2/3 + 1/3 and then you can insert the gallery inside the two_third shortcode or use our advanced layout editor instead.
2. Unfortunately that would take a lot of time and code and would have to be considered custom work. If you would like to hire someone to do the customization for you then here is a good place, http://kriesi.at/contact/customization.
Best regards,
Elliott- This reply was modified 10 years ago by Elliott.
-
AuthorPosts