Forum Replies Created
-
AuthorPosts
-
Hello jorgepelaez!
Inside the Contact form element, add a new element, set it to be a “Select Element” and populate it like this:
Cheers!
JosueHi Flávio Pavanelli!
Try adding this code to the Quick CSS:
.main_menu .menu ul { width: 300px !important; }
Change 300 for the desired size.
Best regards,
JosueHey kevv33!
What do you mean by ‘jerky’, can you post a screenshot or a screencast maybe?
Best regards,
JosueHey lpfa!
The link is not wrapping the text in question, see:
Best regards,
JosueHi JaredBurnett!
Open includes/loop-index.php, remove or comment line 74 to line 78:
Tested on my local installation of Enfold 2.3.
Regards,
JosueOctober 10, 2013 at 5:13 am in reply to: Body and Sidebar Weird Separator Highlight after update #173408Hello Evan!
Here’s a fix, add this to the Quick CSS:
.container .content{ border-color: transparent; }
Cheers!
JosueHi,
Can you post the link to your website please? and a screenshot of what you want to achieve?
Regards,
JosueHello!
It’s hard to tell why, but here’s a fix:
#black-studio-tinymce-8 .aligncenter{ margin-bottom: 20px !important; padding: 0 !important; }
Regards,
JosueOctober 10, 2013 at 4:37 am in reply to: Remove bread crumbs from Fixed Header with Social Icons #173385Hi centrix!
Try adding this code to the Quick CSS:
.title_container{ display: none !important; } .social_header #header_main .container, .social_header .main_menu div > ul > li > a { height: 115px !important; line-height: 116px !important; }
Regards,
Josue-
This reply was modified 11 years, 6 months ago by
Josue.
Hello jennallocco!
That’s intended, the sidebars should hide on mobile, if you don’t want that behavior, you can always select a Fixed layout, regarding the WP Touch plugin, there is no official support but that’s doesn’t mean it won’t work, try it.
Cheers!
JosueGlad we could help, let us know if you have any more questions or issues :)
Regards,
JosueHi zerozendesign!
This will fix it:
.youtube_gallery_player br { display: none !important; } .youtube_gallery_player .thickbox{ display: inherit !important; }
Cheers!
JosueHey zerozendesign!
Try with this:
.single-post .title_container{ display: none; }
Cheers!
JosueHello Doug!
Where does that shortcode comes from?
Regards,
JosueHello Dave!
You will need to implement some JavaScript alongside with some CSS, if you know how to do it, take a look at these alternatives.
Cheers!
JosueGlad we could help, let us know if you have any more questions or issues :)
Regards,
JosueGlad you got it working, let us know if you have any more questions or issues :)
Regards,
JosueHere’s a workaround:
Open /js/shortcodes.js, comment or remove line 220 and line 241 (this will disable the scroll to top effect):
Then, add this CSS to the Quick CSS or to the css/custom.css file:
.portfolio_preview_container{ position: absolute; z-index: 200; background: white; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 25px 1px; }
Best regards,
JosueHey!
The HTML code:
<p><span id="footer_icon_1" class="av_font_icon avia-icon-pos-left" style="font-size:15px;line-height:15px;" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello"></span><span style="margin-left: 5px;">218 Viceroy Street<br><span style="margin-left: 21px;">Billings, MT 59101</span></span></p> <p><span id="footer_icon_2" class="av_font_icon avia-icon-pos-left" style="font-size:15px;line-height:15px;" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello"></span><span style="margin-left: 7px;"><a href="tel:4067942593">406. 794. 2593</a></span></p> <p><span id="footer_icon_3" class="av_font_icon avia-icon-pos-left" style="font-size:14px;line-height:14px;" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello"></span><span style="margin-left: 6px;"><a href="mailto: (Email address hidden if logged out) ?Subject=" target=""> (Email address hidden if logged out) </a></span></p>
The CSS to change each icon:
#footer_icon_1, #footer_icon_2, #footer_icon_3{ /* Applies to the three icons */ position: relative; } #footer_icon_1{ /* Applies to icon 1 */ color: red; top: 2px; } #footer_icon_2{ /* Applies to icon 2 */ color: blue; top: 5px; } #footer_icon_3{ /* Applies to icon 3 */ color: green; top: 3px; }
Best regards,
JosueHi Jeffrey!
That would require being able to set two labels in each occurrence, and that requires a deeper customization to the backend, unfortunately that’s out of the scope of this support forum, if you really need try hiring a freelance for the job.
Cheers!
JosueHi!
The default spacing is 13px, if you want a different amount simply change the 20px here:
.main_menu ul:first-child > li > a{ padding: 0 20px !important; }
Cheers!
JosueThis reply has been marked as private.Hey PPCHound!
It’s a server-side issue, have you tried contacting your hosting provider?
Best regards,
JosueHi,
Try adding this code to the Quick CSS area in the Theme options page:
.main_menu ul:first-child > li > a{ padding: 0 20px !important; }
Regards,
JosueHi,
To make them equal size, try adding this code to the Quick CSS area in the Theme options page:
.avia-caption .avia-caption-title{ display: block !important; }
Result:
Regards,
JosueHi,
Can you create an administrator account and post it here as a private reply?
Regards,
JosueOctober 9, 2013 at 8:10 pm in reply to: Layerslider working perfectly in preview…not on page… #173233This reply has been marked as private.October 9, 2013 at 2:29 am in reply to: Adding a category as CSS class to “Blog Posts” content element Avia Layout bldr #172815Hello!
This code (without the last part) works:
$taxonomies = get_object_taxonomies(get_post_type($the_id)); $taxs = array(); $excluded_taxonomies = apply_filters('avf_exclude_taxonomies', array('post_tag','post_format'), get_post_type($the_id), $the_id); if(!empty($taxonomies)) { foreach($taxonomies as $taxonomy) { if(!in_array($taxonomy, $excluded_taxonomies)) { $taxs[] = wp_get_post_terms( $the_id, $taxonomy ); } } } foreach($taxs as $tax) { foreach($tax as $term) { $post_class .= ' '.'category-'.$term->slug.' '; } }
Tested in my local installation.
Regards,
JosueHello Indiatravelz!
If the slider is full-width is kinda impossible to tell the exact width of the image, because that will depend on the screen size of the user.
Regards,
Josue -
This reply was modified 11 years, 6 months ago by
-
AuthorPosts