Forum Replies Created
-
AuthorPosts
-
Hi akamaxbuz!
After you select the images and click the “Create a new gallery” button, you’ll have an option to select the number of columns for the gallery. Look for “GALLERY SETTINGS” > Columns.
Regards,
IsmaelHi!
Please use this instead:
#main > div.page-restrict-output { padding-left: 50px; padding-right: 50px; }Remove browser cache then reload the page.
Regards,
IsmaelMarch 4, 2014 at 9:10 am in reply to: Text Block has No Formatting Buttons, and Text is Invisible – in Advanced Editor #232082Hey!
I didn’t experience the issue when adding content on a Text Block however the SEO plugin might be causing the issue. Please try to deactivate the plugin then test it again. You should probably use http://wordpress.org/plugins/wordpress-seo/
Regards,
IsmaelHey!
You need to increase the 1/4 column width in order to resize the image. Add this on Quick CSS:
.home .flex_column.av_one_fourth.avia-builder-el-3.el_after_av_three_fourth { width: 25%; margin-left: 1%; }Regards,
IsmaelHey!
Please download the latest version of Enfold, version 2.5.4. It includes a better youtube integration script. You can check the Enfold change log. Update the theme via FTP. Watch this video by Devin: http://vimeo.com/channels/aviathemes/67209750
Regards,
IsmaelHi!
You need to edit the up-sells and cross-sells for each product. Edit the product item then look for Linked Products panel. The selected products will be shown under the “You might also like” area.
Best regards,
IsmaelHey cdh002!
You can add background images on Enfold > Styling > Background Image. You can apply different background images for Header, Main Content, Alternate Content etc.
Regards,
IsmaelHey!
No, you can’ create a 404 page on admin area. Please edit includes > error404.php if you want to change the layout of the 404 page.
Best regards,
IsmaelHey ldsrutter!
I checked the website and it loads fine. You can improve loading speed using cache and minify plugins. Most use plugins are the following:
http://wordpress.org/plugins/w3-total-cache/
http://wordpress.org/plugins/bwp-minify/
Regards,
IsmaelMarch 4, 2014 at 8:44 am in reply to: Layerslider is not showing my HD suffix hack video image correctly – any idea? #232068Hi!
You can add this on Quick CSS or custom.css to remove the ugly video preview image:
img.ls-videopreview { display: none !important; }Cheers!
IsmaelMarch 4, 2014 at 8:33 am in reply to: Multiple Email recipients for the contact form (bis) ? #232064Hi!
I’m sorry but the default contact form element is not capable of multiple email recipients. You should really use the contact form 7 plugin then refer to this link: http://contactform7.com/selectable-recipient-with-pipes/ Most of the plugin’s style will be overridden by the theme’s contact form style.
Please hire a freelance developer if you want to modify the contact form element. For further customization, please visit Werkpress.
Cheers!
IsmaelMarch 4, 2014 at 8:30 am in reply to: How to create "Fullscreen Slider" page as shown in Enfold demo #232062Hi!
Please edit the page then switch to Advance Layout Builder. You can find the Color Section element under Layout Elements panel. Insert one color section then configure it. Insert a background image, refer to the screenshot above. Set the Background Attachment to fixed or parallax. Please try to experiment to get better results. You can watch these videos to learn more about the theme: http://vimeo.com/channels/aviathemes/
Regards,
IsmaelHi monjacq01!
Please download the latest version of theme. Looks like you did a lot of modifications and it is hard to trace which files have gone haywire. Add this on Quick CSS to fix the logo on mobile view:
@media only screen and (max-width: 767px) { .responsive .logo img { max-width: 30%; width: 30%; margin-left: 20px; } .bottom_nav_header.social_header #header_main .container { height: 50px !important; line-height: 50px !important; } }Best regards,
IsmaelHi!
You can only add Google fonts for the heading dropdown on Enfold > Styling. Please change the heading font using Quick CSS or custom.css.
Regards,
IsmaelHi honesty1993!
I’m sorry how did you set the layout to 940px? There is no option for that. If you want to decrease the width of the container, please edit css > grid.css.
Best regards,
IsmaelHey oliviad!
Please add this on Quick CSS or custom.css:
.logo, .logo a { z-index: 1000 !important; } .avia_wpml_language_switch { position: absolute; left: 0; } #avia2-menu { margin-left: 110px; }Cheers!
IsmaelHey markofwits!
It should be like this:
#fstable, caption, tbody, tfoot, thead, tr, th, td { margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; border-collapse: True; background: transparent; }Regards,
IsmaelHi!
Please post a screenshot of what you’re trying to do. Watch these videos to learn more about the theme: https://vimeo.com/channels/aviathemes
Yigit said that you need to edit the page then switch to Advance Layout Builder. Go to the Layout Elements panel then insert the Color Section. Add 3 1/3 column layouts side by side. Inside the 3 columns layouts, insert a Text Block and an Image element each. We can apply an absolute position to the Text Block to overlap the images or apply the images as background on the actual Text Block. If you’re not sure what to do please hire a freelance developer. For further modifications, please visit Werkpress.
Regards,
IsmaelHi!
Please use this:
.page-id-2703 #main { padding-top: 0 !important; margin-top: -150px !important; }Change the top margin value.
Regards,
IsmaelHi!
You can copy the whole function code on your child theme’s function.php. I think YIgit is referring to the avia_logo function:
if(!function_exists('avia_logo')) { /** * return the logo of the theme. if a logo was uploaded and set at the backend options panel display it * otherwise display the logo file linked in the css file for the .bg-logo class * @return string the logo + url */ function avia_logo($use_image = "", $sub = "", $headline_type = "h1") { $use_image = apply_filters('avf_logo', $use_image); $headline_type = apply_filters('avf_logo_headline', $headline_type); $sub = apply_filters('avf_logo_subtext', $sub); $alt = apply_filters('avf_logo_alt', get_bloginfo('name')); $link = apply_filters('avf_logo_link', home_url('/')); if($sub) $sub = "<span class='subtext'>$sub</span>"; if($logo = avia_get_option('logo')) { $logo = "<img src='{$logo}' alt='{$alt}' />"; $logo = "<$headline_type class='logo'><a href='".$link."'>".$logo."$sub</a></$headline_type>"; } else { $logo = get_bloginfo('name'); if($use_image) $logo = "<img src='{$use_image}' alt='{$alt}' title='{$logo}'/>"; $logo = "<$headline_type class='logo bg-logo'><a href='".$link."'>".$logo."$sub</a></$headline_type>"; } return $logo; } }Regards,
IsmaelHi yongjlee0120!
Can you please give us a link to the website? Did you add any plugin prior to the issue? Please download the latest version of the Enfold theme. Update it via FTP. Watch this video by Devin: https://vimeo.com/channels/aviathemes/67209750
Cheers!
IsmaelMarch 4, 2014 at 7:50 am in reply to: How to change rollover colors on hover for Social Media Icons with Bottom Nav? #232041Hi jmikhail!
You can find these codes on css > layout.css. Select the social icons that you’re using then place the modified code on Quick CSS or custom.css:
#top .social_bookmarks_rss:hover a{color:#fff; background-color:#ffa133; } #top .social_bookmarks_facebook:hover a{color:#fff; background-color:#37589b; } #top .social_bookmarks_twitter:hover a{color:#fff; background-color:#46d4fe; } #top .social_bookmarks_mail:hover a{color:#fff; background-color:#9fae37; } #top .social_bookmarks_dribbble:hover a{color:#fff; background-color:#e44885; } #top .social_bookmarks_linkedin:hover a{color:#fff; background-color:#419cca; } #top .social_bookmarks_search:hover a{color:#fff; background-color:#222222; } #top .social_bookmarks_gplus:hover a{color:#fff; background-color:#de5a49; } #top .social_bookmarks_behance:hover a{color:#fff; background-color:#008cfa; } #top .social_bookmarks_flickr:hover a{color:#fff; background-color:#ff0086; } #top .social_bookmarks_forrst:hover a{color:#fff; background-color:#234317; } #top .social_bookmarks_myspace:hover a{color:#fff; background-color:#000000; } #top .social_bookmarks_tumblr:hover a{color:#fff; background-color:#345574; } #top .social_bookmarks_vimeo:hover a{color:#fff; background-color:#31baff; } #top .social_bookmarks_youtube:hover a{color:#fff; background-color:#a72b1d; } #top .social_bookmarks_pinterest:hover a{color:#fff; background-color:#cb2027; } #top .social_bookmarks_skype:hover a{color:#fff; background-color:#12a5f4; } #top .social_bookmarks_instagram:hover a{color:#fff; background-color:#a67658; } #top .social_bookmarks_five_100_px:hover a{color:#fff; background-color:#222222; } #top .social_bookmarks_soundcloud:hover a{color:#fff; background-color:#F76700; } #top .social_bookmarks_xing:hover a{color:#fff; background-color:#006567; }You can change the background-color to yellow.
Regards,
IsmaelMarch 4, 2014 at 7:47 am in reply to: Fullsize images not fullsize? How to make images bigger #232040Hi!\
You didn’t apply the code. The image should resize to 800px. Please add this below to make resize the image up to 1200px:
#top .fullsize .template-blog .post .entry-content-wrapper img.size-full { width: 1200px; max-width: 1200px; position: relative; left: -20%; }Regards,
IsmaelHey!
Please configure the Blog Posts option then look for “Do you want to display blog posts?” > select “Display entries from a custom taxonomy”.
Regards,
IsmaelMarch 3, 2014 at 6:40 pm in reply to: Wie kann ich media="screen, print" dem CSS-Aufruf hinzufügen? #231734Hey eperi!
Please add this on the child theme’s functions.php:
if(!is_admin()){ add_action('wp_enqueue_scripts', 'avia_register_frontend_scripts'); } function avia_register_frontend_scripts() { $template_url = get_template_directory_uri(); $child_theme_url = get_stylesheet_directory_uri(); //register styles wp_register_style( 'avia-style' , $child_theme_url."/style.css", array(), '1', 'screen print' ); //register default style.css file. //register styles wp_enqueue_style( 'avia-style'); }Best regards,
IsmaelHi!
I checked the website and the blog looks ok. I even removed the sidebar for “RATING DA REPÚBLICA” page and the blog is fine. Please remove browser cache then reload the page a few times. I don’t see the issue on the screenshot above.
Cheers!
IsmaelHey!
You can add something like this on Quick CSS or custom.css.
.related-format-icon.related-format-visible { background: url('http://localhost/kriesi/enfold/wp-content/uploads/2012/04/013-180x180.jpg') no-repeat 50% 50%; }Replace the image url.
Regards,
IsmaelHey fritz_enfold!
What do you mean by “not updateable”? You can actually create a copy of the includes folder on the child theme then add the helper-responsive-megamenu.php file inside.
Regards,
IsmaelHey fritz_enfold!
You can add your own elements on config-templatebuilder > avia-shortcodes. Please hire a freelance developer if you’re not sure how. For further modifications, please visit Werkpress. You can use this plugin if you want to insert php codes on Text Blocks: http://wordpress.org/plugins/insert-php/
Cheers!
IsmaelMarch 3, 2014 at 6:08 pm in reply to: Video in Color Section and Sliders NOT Working – only black screen #231702Hey wendyhomola!
Please give us a link to the website. You should download the 2.5.4 version which includes an improved youtube integration. See if that helps. This is the change log for 2.5.4:
Files that changed: - style.css - new version number - js/shortcode.js - improved youtube integration - folder: config-templatebuilder: small adjustments and bugfixesBest regards,
Ismael -
AuthorPosts
