-
AuthorSearch Results
-
January 27, 2016 at 11:37 am #572754
In reply to: Filter system Woocommerce
Topic can be closed.
January 27, 2016 at 11:36 am #572752In reply to: Page Attributes
Topic can be closed.
January 27, 2016 at 11:19 am #572741Topic: set margin top
in forum Enfoldyampieters
Participanthello, here: http://www.jeelsites.nl/wptest/finoven/
ive got this title FINOVEN in the vine region
there is too much space between the word FINOVEN and the edge of the vine region.
so ive set the padding on 0px. <h2 style=”text-align: center; padding-top:0px;”>FINOVEN</h2>
but there is still too much space.
how to edit / manage this?-
This topic was modified 10 years, 2 months ago by
yampieters.
January 27, 2016 at 11:01 am #572732In reply to: separator lines in socket
Hi!
Hi we usually get back to you with a day if you post it between monday to friday. Please do not bump your tickets as it will push to the bottom of the queue.
We are working on your ticket please be patient while we update the results soon.
We have modified and added this CSS
/****farbige Einzel-Icons***/ #top .social_bookmarks_facebook a:hover { color: #2168d3!important; background: transparent!important; } #top .social_bookmarks_twitter a:hover { color: #24cfe2!important; background: transparent!important; } #top .social_bookmarks_youtube a:hover { color: #dd3333!important; background: transparent!important; } #top .social_bookmarks_mail a:hover { color: #67ad21!important; background: transparent!important; }Best regards,
Vinay-
This reply was modified 10 years, 2 months ago by
Vinay.
January 27, 2016 at 10:33 am #572725Topic: Verschiedene Footer
in forum Enfoldunderhill123
ParticipantHey,
ich würde gerne für die Shop-Seiten einer Internetseite (siehe Private Content) einen völlig anderen Footer benutzen, als für die Nicht-Shop-Seiten.
Hintergrund: die rechtsrelevanten Menüpunkte, wie Versandkosten, Zahlungsmethoden, Shop-AGB und SHOP-Widerrufsrecht, Datenschutz etc. werden in abweichender Form ausschließlich auf den Shop-Seiten benötigt. Ich möchte ebenfalls, dass sich der Footer farblich vom anderen Footer unterscheidet / abhebt. Die Karte, für etwaige Selbstabholer sollte auf einen anderen Standort verweisen, der zusätzlich andere Öffnungszeiten besitzt. Kurzum, der Inhalt des Shop-Footers müsste inhaltlich anders aufgebaut werden.Sollte ein solcher Topic bereits vorhanden sein, bereits jetzt sorry; ich hab ihn nicht gefunden.
Danke für Eure Hilfe, Grüße, Gerd.
January 27, 2016 at 9:32 am #572692Topic: Special heading always appears italic
in forum EnfoldRJ
ParticipantHi,
Whenever i add a special heading the font style always appears as italic. I tried the solutions here: https://kriesi.at/support/topic/styling-special-heading-elements/ but without succes. Even with the code inspector i see the css rule states font-style: normal but the heading always appears as italic. How can i change the font size to normal? I even tried:
.av-special-heading {font-style:normal !important;} but no succes :(
Example: http://localmakers.nl/ in the left column you see all the heading in italic.
Thanks in advance!
January 27, 2016 at 9:20 am #572686In reply to: Several questions
Hey!
3.) Use this for the laptop image:
@media only screen and (max-width: 989px) { .lv_laptopimagehome { display: none !important; } }4.) Add this in the Quick CSS field:
@media only screen and (max-width: 1024px) { .responsive #top #wrap_all .avia-content-slider-odd .slide-entry.first { margin-left: 0; width: 100%; } .responsive #top #wrap_all .avia-content-slider-even .slide-entry.slide-parity-odd, .responsive #top #wrap_all .avia-content-slider-odd .slide-entry.slide-parity-even { margin: 0; clear: both; } .responsive #top #wrap_all .slide-entry { width: 48%; margin-left: 4%; } }5.) Looks like they are added as frames. Unfortunately, we can’t modify that on our side. You have to contact the script author.
Best regards,
IsmaelJanuary 27, 2016 at 8:52 am #572673In reply to: change active color full width sub menu
Hey corina!
Thank you for using Enfold.
You can try this in the Quick CSS field:
#top .av-subnav-menu > li a:focus { color: red; }Best regards,
IsmaelJanuary 27, 2016 at 8:48 am #572669In reply to: Missing #scroll-top-link
Hey!
Please use the below css in quick css it looks like the background color is missing
#scroll-top-link { background-color: #333333!important; }To remove the button
#scroll-top-link {display: none; }Regards,
VinayJanuary 27, 2016 at 8:38 am #572662Hey!
Please try this in the functions.php file:
add_filter('ava_after_content', 'ava_after_main_container_mod', 20, 1); function ava_after_main_container_mod() { if(is_singular('post')) { $output = do_shortcode("[av_postslider link='category' columns='3' items='9' offset='0' contents='excerpt' preview_mode='auto' image_size='portfolio' autoplay='no' interval='5']"); echo $output; } }Adjust the post slider shortcode as needed.
Regards,
IsmaelJanuary 27, 2016 at 8:11 am #572651In reply to: Color Sections for Hero Images???
Hi!
We have set the image to top center and added this custom css in Enfold > General Styling > Quick CSS
Please feel free to play with max-width and max-height if you need to adjust anything
/* Slider Height */ @media only screen and (max-width: 1088px) { #custom-height-1{ max-height:320px; } } @media only screen and (max-width: 480px) { #custom-height-1{ max-height:200px; } }Regards,
VinayJanuary 27, 2016 at 7:54 am #572646In reply to: How can I add a slider on search results page?
Hi!
Unfortunately, adding the layer slider as shortcode is not going to work. You can append it on top of the search page but the slider will not initialized correctly. Example (functions.php file):
// add layer slider in search add_action('ava_after_main_title', 'add_layer_slider'); function add_layer_slider() { if( is_search() ) { echo do_shortcode("[ av_layerslider id='1']"); } }Please try to use this instead:
// add layer slider in search add_action('ava_after_main_title', 'add_layer_slider'); function add_layer_slider() { if( is_search() ) { $resources = "<link rel='stylesheet' id='layerslider-css' href='http://localhost/kriesi/enfold/wp-content/themes/enfold/config-layerslider/LayerSlider/static/css/layerslider.css?ver=5.6.2' type='text/css' media='all' /> <script type='text/javascript' src='http://localhost/kriesi/enfold/wp-content/themes/enfold/config-layerslider/LayerSlider/static/js/greensock.js?ver=1.11.8'></script> <script type='text/javascript' src='http://localhost/kriesi/enfold/wp-content/themes/enfold/config-layerslider/LayerSlider/static/js/layerslider.kreaturamedia.jquery.js?ver=5.6.2'></script> <script type='text/javascript' src='http://localhost/kriesi/enfold/wp-content/themes/enfold/config-layerslider/LayerSlider/static/js/layerslider.transitions.js?ver=5.6.2'></script>"; $script = "<script data-cfasync=\"false\" type=\"text/javascript\">var lsjQuery = jQuery;</script><script data-cfasync=\"false\" type=\"text/javascript\"> lsjQuery(document).ready(function() { if(typeof lsjQuery.fn.layerSlider == \"undefined\") { lsShowNotice('layerslider_7_1','jquery'); } else { lsjQuery(\"#layerslider_7_1\").layerSlider({responsiveUnder: 1140, layersContainer: 1140, autoStart: false, startInViewport: false, pauseOnHover: false, twoWaySlideshow: true, loops: 1, keybNav: false, touchNav: false, skin: 'fullwidth', globalBGColor: 'rgba(255, 255, 255, 0.45)', navPrevNext: false, hoverPrevNext: false, navStartStop: false, navButtons: false, showCircleTimer: false, thumbnailNavigation: 'disabled', lazyLoad: false, yourLogoStyle: 'left: 10px; top: 10px;', cbInit: function(element) { }, cbStart: function(data) { }, cbStop: function(data) { }, cbPause: function(data) { }, cbAnimStart: function(data) { }, cbAnimStop: function(data) { }, cbPrev: function(data) { }, cbNext: function(data) { }, skinsPath: 'http://www.saldaturacontrollo.it/wp/wp-content/themes/enfold/config-layerslider/LayerSlider/static/skins/'}) } }); </script>"; $output = $resources . '<div id="layer_slider_1" class="avia-layerslider main_color avia-shadow avia-builder-el-0 el_before_av_one_full avia-builder-el-first container_wrap sidebar_right" style="height: auto;"><div class="ls-wp-fullwidth-container" style="height: 121px;">'.$script.'<div class="ls-wp-fullwidth-helper" style="width: 918px; height: 121px; left: 0px;"><div id="layerslider_7_1" class="ls-wp-container ls-container ls-fullwidth" style="width: 918px; height: 120.789px; margin: 0px auto; visibility: visible;"><div class="ls-inner" style="width: 918px; height: 121px; background-color: rgba(255, 255, 255, 0.45098);"><div class="ls-slide ls-animating" data-ls=" transition2d: all;" style="width: 918px; height: 121px; visibility: visible; display: none; left: auto; right: 0px; top: 0px; bottom: auto;"><img src="http://www.saldaturacontrollo.it/wp/wp-content/uploads/2016/01/news3.jpg" class="ls-bg ls-preloaded" alt="news3" style="padding: 0px; border-width: 0px; width: 1610.53px; height: 120.789px; margin-left: -346.263px; margin-top: 0.105263px;"><div class="ls-gpuhack" style="width: auto; height: auto; padding: 0px; border-width: 0px; left: 0px; top: 0px;"></div><p class="ls-l" style="top: 56.3684px; left: -22.5474px; white-space: nowrap; width: auto; height: auto; font-size: 10.4684px; line-height: 11.2737px; padding: 0px; border-width: 0px; margin-left: 0px; margin-top: 0px; transform-origin: 50% 50% 0px; transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, -0.002, 0, 0, 0, 1); opacity: 1; visibility: visible;"><span class="slide-slogan2">I corsi in partenza e le nostre novità</span></p></div></div><div class="ls-loading-container" style="z-index: -1; display: none;"><div class="ls-loading-indicator"></div></div><div class="ls-shadow"></div></div></div></div></div>'; echo $output; } }Best regards,
IsmaelJanuary 27, 2016 at 7:24 am #572634In reply to: Create two sections in accordion
Hi!
Please try this in the Quick CSS field:
#top .aviaccordion-preview { width: 72.9% !important; } .aviaccordion-excerpt { position: absolute; right: 0; width: 50%; top: -20px; } #top .aviaccordion-preview-title { padding: 3%; } #top .aviaccordion-title { width: 20%; top: 10%; position: absolute; }Cheers!
IsmaelJanuary 27, 2016 at 7:04 am #572622Hey!
Please add this in the functions.php file:
// header sidebar function ava_header_sidebar(){ ?> <script> (function($){ var removeSidebar = function() { if (window.matchMedia('(max-width: 1024px)').matches) { $('html').removeClass('html_header_left html_header_sidebar'); } } removeSidebar(); })(jQuery); </script> <?php } add_action('wp_footer', 'ava_header_sidebar');.. and the following code in the Quick CSS field:
@media only screen and (max-width: 1024px) { .container #advanced_menu_toggle, #advanced_menu_hide { display: block; } .main_menu .avia-menu, #header_main_alternate, .fallback_menu { display: none; } .responsive #top #menu-item-shop.cart_dropdown { margin: 0; top: 0; border: none; height: 100%; width: auto; line-height: 80px; } }Regards,
IsmaelJanuary 27, 2016 at 7:04 am #572621In reply to: LayerSlider WP & WPML String Translation
Hi,
Glad you found a workaround and sorry for the problems, it will hopefully be solved in a future release. Please let us know if you should need any more help on the topic.
Regards,
RikardJanuary 27, 2016 at 6:32 am #572608In reply to: Image in menu doesn't line up with text
Hi,
Please try the following in Quick CSS under Enfold–>General Styling:
#menu-item-2368 { padding-top: 25px !important; }Thanks,
RikardJanuary 27, 2016 at 6:10 am #572596Topic: Align Text & Button in Coloured Section
in forum EnfoldHaycreations
ParticipantUsing Avia Layout I am trying to set up a Coloured Section with some text & a button over the top (like the yellow section on the Homepage of your Construction Demo). When I add the Button element however it doesn’t line up with the text. Is there a quick CSS code to wrap these elements to be on the same line?
January 27, 2016 at 5:44 am #572582Hi,
I am not using WooCommerce as I am using WP-eCommerce. Please take a look at all the posts above I feel like I am going around in circles.
I have tried deactivating the plugins but that doesn’t work. I just need help with custom css code in order to make a table fit on a mobile view.
All you would need to do is go to http://www.elsacano.com/shop/dresses/dee-dee-dress/, then add the item to your cart then go to checkout on the top of the page on a mobile phone in order to see the 1st table that does not appear.
Hopefully this is clear?
January 27, 2016 at 5:39 am #572578In reply to: Remove boarder on big picture/ Section questions
Hi,
Sorry, it’s very difficult to see it against the dark background. Please try this in Quick CSS:
#top div .avia-gallery .avia-gallery-big { padding: 2px !important; }Regards,
RikardJanuary 27, 2016 at 4:11 am #572558santanin
ParticipantHi. For Portfolio items in the “Masonry” Media Element, the excerpt or preview text does NOT display on mobile devices and small tablets in portfolio view. The title displays, but not the excerpt. On desktops and larger tablets in landscape view I see BOTH the title and excerpt. But on smaller screens I only see the title. How can you make the excerpt or preview text display for Portfolio items in the “Masonry” Media Element on small screens?
I provided a link in the private content below.
Thank you.
January 27, 2016 at 3:45 am #572541Topic: Adding WhatsApp Button on Social Share Buttons
in forum Enfoldambia01
ParticipantHi,
I’m trying to add a WhatsApp sharing button on the Social Share Buttons available on Enfold as a content element.
I’ve tried following the steps mentioned on
https://kriesi.at/support/topic/add-whatsapp-icon/
https://kriesi.at/support/topic/add-sharing-social-buttons-whatsapp-telegram-and-line/However the WhatsApp Icon is still not available. I’m pretty new to website building and using Enfold. Below are the steps I followed to try and add the button.
1. Created Child Theme
2. Uploaded zip file with WhatsApp Icon Font and installed functionality plugin
3. Added code to bottom of function.php via plugin
4. Added code for icon colour on Edit CSSHowever, WhatsApp is still not available.
Would appreciate your assistance.
Kind Regards,
Muhammad
January 27, 2016 at 2:45 am #572508In reply to: Logo Area Container
Hey alifeofwellevance!
Are you wanting two logos or just to move the current logo to the top left?
Best regards,
ElliottJanuary 27, 2016 at 2:35 am #572503Hi mmxvi!
You need to restore the frontpage from the restaurant one page demo without importing the demo again?
You can do this, http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/.
And then copy this into the editor on your page.
[av_fullscreen size='extra_large' animation='fade' autoplay='true' interval='5' control_layout='av-control-hidden' scroll_down='aviaTBscroll_down' perma_caption='aviaTBperma_caption' custom_class=''] [av_fullscreen_slide slide_type='image' id='387' position='top left' video='http://' mobile_image='' video_cover='' title='Welcome to Enfold Restaurant' custom_title_size='' custom_content_size='16' caption_pos='caption_left caption_left_framed caption_framed' link_apply='button button-two' link='lightbox' link_target='' button_label='About us' button_color='light' link1='manually,#about' link_target1='' button_label2='Reservations' button_color2='theme-color' link2='manually,#reservations' link_target2='' font_color='' custom_title='' custom_content=''] The best gourmet restaurant available in Manhatten Book online or call (555)123-4567 [/av_fullscreen_slide] [av_fullscreen_slide slide_type='image' id='378' position='top left' video='http://' mobile_image='' video_cover='' title='' custom_title_size='' custom_content_size='' caption_pos='caption_bottom' link_apply='' link='lightbox' link_target='' button_label='Click me' button_color='light' link1='manually,http://' link_target1='' button_label2='Click me' button_color2='light' link2='manually,http://' link_target2='' font_color='' custom_title='' custom_content=''][/av_fullscreen_slide] [av_fullscreen_slide slide_type='image' id='377' position='top left' video='http://' mobile_image='' video_cover='' title='' custom_title_size='' custom_content_size='' caption_pos='caption_bottom' link_apply='' link='lightbox' link_target='' button_label='Click me' button_color='light' link1='manually,http://' link_target1='' button_label2='Click me' button_color2='light' link2='manually,http://' link_target2='' font_color='' custom_title='' custom_content=''][/av_fullscreen_slide] [av_fullscreen_slide slide_type='image' id='375' position='top left' video='http://' mobile_image='' video_cover='' title='' custom_title_size='' custom_content_size='' caption_pos='caption_bottom' link_apply='' link='lightbox' link_target='' button_label='Click me' button_color='light' link1='manually,http://' link_target1='' button_label2='Click me' button_color2='light' link2='manually,http://' link_target2='' font_color='' custom_title='' custom_content=''][/av_fullscreen_slide] [/av_fullscreen] [av_section color='main_color' custom_bg='' src='http://kriesi.at/themes/enfold-restaurant-one-page/files/2014/07/fruit_bg.jpg' attachment='384' attachment_size='full' attach='scroll' position='bottom right' repeat='no-repeat' video='' video_ratio='16:9' min_height='' min_height_px='500px' padding='default' shadow='no-shadow' bottom_border='no-border-styling' id='about' custom_class=''] [av_heading tag='h2' padding='50' heading='About Us' color='' style='blockquote modern-quote modern-centered' custom_font='#ffffff' size='60' subheading_active='' subheading_size='15' custom_class=''][/av_heading] [av_one_half first] [av_heading tag='h2' padding='20' heading='A few words <strong>about us</strong>' color='' style='blockquote modern-quote' custom_font='#ffffff' size='' subheading_active='subheading_below' subheading_size='15' custom_class=''] Let us introduce ourselves [/av_heading] [av_textblock size='' font_color='' color=''] Donec elit libero, sodales nec, volutpat a, suscipit non, turpis. Nullam sagittis. Suspendisse pulvinar, augue ac venenatis condimentum, sem libero volutpat nibh, nec pellentesque velit pede quis nunc. Vestibulia Curae; Fusce id purus. <strong>Ut varius tincidunt</strong> libero. Phasellus dolor. Maecenas vestibulum mollis Lorem ipsum dolor sit amet, <strong>consectetuer</strong> adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis. [/av_textblock] [/av_one_half][av_one_half] [av_heading tag='h2' padding='20' heading='A place to wine, a place <strong>to dine</strong>' color='' style='blockquote modern-quote' custom_font='#ffffff' size='' subheading_active='subheading_below' subheading_size='15' custom_class=''] How it all came to be... [/av_heading] [av_textblock size='' font_color='' color=''] Lorem ipsum dolor sit amet, <strong>consectetuer</strong> adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis. <blockquote>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</blockquote> Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. [/av_textblock] [/av_one_half][av_hr class='invisible' height='50' shadow='no-shadow' position='center'] [av_gallery ids='387,382,381,375,376,377,378,379,380' style='thumbnails' preview_size='portfolio' crop_big_preview_thumbnail='avia-gallery-big-crop-thumb' thumb_size='portfolio' columns='9' imagelink='lightbox' lazyload='avia_lazyload' custom_class=''] [av_hr class='invisible' height='50' shadow='no-shadow' position='center'] [/av_section] [av_section color='main_color' custom_bg='' src='http://kriesi.at/themes/enfold-restaurant-one-page/files/2014/07/wine-1500x1102.jpg' attachment='382' attachment_size='extra_large' attach='parallax' position='center center' repeat='stretch' video='' video_ratio='16:9' min_height='' min_height_px='500px' padding='large' shadow='no-border-styling' bottom_border='no-border-styling' id='menu' custom_class=''] [av_heading tag='h2' padding='0' heading='Our Menu' color='custom-color-heading' style='blockquote modern-quote modern-centered' custom_font='#ffffff' size='60' subheading_active='' subheading_size='15' custom_class=''][/av_heading] [/av_section] [av_section color='main_color' custom_bg='' src='http://kriesi.at/themes/enfold-restaurant-one-page/files/2014/07/fruit_bg.jpg' attachment='384' attachment_size='full' attach='scroll' position='bottom right' repeat='no-repeat' video='' video_ratio='16:9' min_height='' min_height_px='500px' padding='default' shadow='no-border-styling' bottom_border='no-border-styling' id='' custom_class=''] [av_heading tag='h2' padding='25' heading='<strong>Menu</strong> of the day' color='' style='blockquote modern-quote modern-centered' custom_font='' size='' subheading_active='' subheading_size='15' custom_class=''][/av_heading] [av_one_fifth first] [/av_one_fifth][av_three_fifth] [av_catalogue ] [av_catalogue_item title='Sesame crusted scotch fillet' price='7.50$' id='379' link='lightbox' target=''] with honeyed Pedro Ximenez sauce and potato cake [/av_catalogue_item] [av_catalogue_item title='Roast Rack of Lamb' price='7.50$' id='375' link='lightbox' target=''] with herb crust and fruity mesclun salad and straw potato [/av_catalogue_item] [/av_catalogue] [/av_three_fifth][av_one_fifth] [/av_one_fifth][av_heading tag='h2' padding='25' heading='Break<strong>fast</strong>' color='' style='blockquote modern-quote modern-centered' custom_font='' size='' subheading_active='' subheading_size='15' custom_class=''][/av_heading] [av_one_half first] [av_catalogue] [av_catalogue_item title='Eggs Benedict' price='21$'] with either bacon or salmon [/av_catalogue_item] [av_catalogue_item title='Enfold’s famous Crepes' price='16$'] with fresh fruit, bacon and maple syrup [/av_catalogue_item] [av_catalogue_item title='French Toasted Brioche' price='17$'] with grilled banana, bacon, rosewater mascarpone and maple syrup [/av_catalogue_item] [/av_catalogue] [/av_one_half][av_one_half] [av_catalogue] [av_catalogue_item title='Low Carb Breakfast' price='13$' link='' target='' disabled=''] grilled chicken breast with veggies [/av_catalogue_item] [av_catalogue_item title='Bagel' price='8.50$' link='' target=''] with salmon, cream cheese and salsa [/av_catalogue_item] [av_catalogue_item title='American Pancakes' price='21$' link='' target='' disabled=''] with chocolate sauce or maple syrup, honey and cream [/av_catalogue_item] [/av_catalogue] [/av_one_half][av_heading tag='h2' padding='25' heading='Lunch<strong>Time</strong>' color='' style='blockquote modern-quote modern-centered' custom_font='' size='' subheading_active='' subheading_size='15' custom_class=''][/av_heading] [av_one_half first] [av_catalogue] [av_catalogue_item title='Spiced Pigeon' price='38$'] Ale & artichokes [/av_catalogue_item] [av_catalogue_item title='Ribeye Steak' price='42$'] Mushroom ketchup & fries [/av_catalogue_item] [av_catalogue_item title='Duck Breast' price='35$'] Smoked confit fennel & umbles [/av_catalogue_item] [av_catalogue_item title='Roast Turbot' price='22$'] Mussel & seaweed ketchup, salmon roe & sea rosemary [/av_catalogue_item] [/av_catalogue] [/av_one_half][av_one_half] [av_catalogue] [av_catalogue_item title='Linefish' price='27$'] Pan fried line fish, herbed nicola potato and mussel salad [/av_catalogue_item] [av_catalogue_item title='Autumn Lamb' price='33$'] Pan seared lamb loin, slow roasted lamb shanks [/av_catalogue_item] [av_catalogue_item title='Duck' price='75$'] Confit duck leg, mushroom and liver stuffing and onions [/av_catalogue_item] [av_catalogue_item title='Homedried Tomato' price='22$'] with sesame, aubergine puree and burnt aubergine jelly [/av_catalogue_item] [/av_catalogue] [/av_one_half][av_heading tag='h2' padding='25' heading='Wine <strong>Selection</strong>' color='' style='blockquote modern-quote modern-centered' custom_font='' size='' subheading_active='' subheading_size='15' custom_class=''][/av_heading] [av_one_half first] [av_image src='http://kriesi.at/themes/enfold-restaurant-one-page/files/2014/07/wine-845x684.jpg' attachment='382' attachment_size='gallery' align='center' animation='pop-up' link='' target='' styling='' caption='' font_size='' appearance='' custom_class=''][/av_image] [/av_one_half][av_one_half] [av_catalogue] [av_catalogue_item title='Grechetto, Poggio Della Costa' price='23$' link='' target='' disabled=''] 2011, Umbria, Italy (B) 13|49 [/av_catalogue_item] [av_catalogue_item title='Muskateller, Heidi Schrock' price='45$' link='' target='' disabled=''] 2010, Neusiedlersee-Huggeland, Austria (B) 52 [/av_catalogue_item] [av_catalogue_item title='Posip, Zlatan Otok Winery' price='12$' link='' target='' disabled=''] 2012, Island of Hvar, Croatia (B) 53 [/av_catalogue_item] [av_catalogue_item title='Chenin Blanc, Nicolas Joly' price='33$' link='' target='' disabled=''] 2010, Loire, France (B) 65 [/av_catalogue_item] [av_catalogue_item title='Petite Chablis, F. Bachelier' price='32.90$' link='' target='' disabled=''] 2011, Chablis, France (O) 44 [/av_catalogue_item] [av_catalogue_item title='Prosecco, Jeio' price='22$' link='' target='' disabled=''] NV, Italy (O) 11|37 [/av_catalogue_item] [av_catalogue_item title='Cava Brut, Campasso' price='33$' link='' target='' disabled=''] NV, Spain (O) 11|41 [/av_catalogue_item] [av_catalogue_item title='Sparkling Rosé, Trevisio' price='44$' link='' target='' disabled='aviaTBaviaTBdisabled'] NV, Veneto, Italy (O) 11|41 [/av_catalogue_item] [av_catalogue_item title='Sauvignon Blanc, Urlar' price='23$' link='' target='' disabled='aviaTBaviaTBdisabled'] 2011, Wairarapa, New Zealand (B) 12|45 [/av_catalogue_item] [av_catalogue_item title='Pinot Grigio, Scarbolo' price='35.50$' link='' target='' disabled='aviaTBaviaTBdisabled'] 2012, Friuli, Italy (B) 12|45 [/av_catalogue_item] [/av_catalogue] [/av_one_half][av_heading tag='h2' padding='25' heading='Non alcoholic <strong>Beverages</strong>' color='' style='blockquote modern-quote modern-centered' custom_font='' size='' subheading_active='' subheading_size='15' custom_class=''][/av_heading] [av_one_third first] [av_catalogue] [av_catalogue_item title='7UP' price='3.90$'][/av_catalogue_item] [av_catalogue_item title='Root Beer' price='3.90$'][/av_catalogue_item] [av_catalogue_item title='Apple Juice' price='3.90$'][/av_catalogue_item] [av_catalogue_item title='Orange Juice' price='3.90$'][/av_catalogue_item] [/av_catalogue] [/av_one_third][av_one_third] [av_catalogue] [av_catalogue_item title='Coke' price='3.90$'][/av_catalogue_item] [av_catalogue_item title='Pepsi' price='2.90$'][/av_catalogue_item] [av_catalogue_item title='Red Bull' price='4.90$'][/av_catalogue_item] [av_catalogue_item title='Bitter Lemon' price='2.95$'][/av_catalogue_item] [/av_catalogue] [/av_one_third][av_one_third] [av_catalogue] [av_catalogue_item title='Crush' price='2.70$'][/av_catalogue_item] [av_catalogue_item title='Crystal Light' price='5.90$'][/av_catalogue_item] [av_catalogue_item title='Banana Shake' price='5.90$'][/av_catalogue_item] [av_catalogue_item title='Pineapple shake ' price='7.95$'][/av_catalogue_item] [/av_catalogue] [/av_one_third] [/av_section] [av_section color='main_color' custom_bg='' src='http://kriesi.at/themes/enfold-restaurant-one-page/files/2014/07/pizza-1500x1000.jpg' attachment='379' attachment_size='extra_large' attach='parallax' position='center center' repeat='stretch' video='' video_ratio='16:9' min_height='' min_height_px='500px' padding='large' shadow='no-border-styling' bottom_border='no-border-styling' id='contact' custom_class=''] [av_heading heading='Contact us' tag='h2' color='custom-color-heading' custom_font='#ffffff' style='blockquote modern-quote modern-centered' size='60' subheading_active='' subheading_size='15' padding='0'][/av_heading] [/av_section] [av_section color='alternate_color' custom_bg='' src='' attachment='' attachment_size='' attach='scroll' position='bottom right' repeat='no-repeat' video='' video_ratio='16:9' min_height='' min_height_px='500px' padding='default' shadow='no-border-styling' id=''] [av_one_fourth first] [av_icon_box icon='ue808' font='entypo-fontello' position='left' title='Enfold Seattle' link='' linktarget='' linkelement=''] 4326 University Way NE Seattle, WA, United States (555) 345 888 <a href="mailto: (Email address hidden if logged out) "> (Email address hidden if logged out) </a> [/av_icon_box] [/av_one_fourth][av_one_fourth] [av_icon_box icon='ue808' font='entypo-fontello' position='left' title='Enfold Dallas' link='' linktarget='' linkelement=''] 11311 Harry Hines Blvd Dallas, TX, United States (555) 389 976 <a href="mailto: (Email address hidden if logged out) "> (Email address hidden if logged out) </a> [/av_icon_box] [/av_one_fourth][av_one_fourth] [av_icon_box icon='ue808' font='entypo-fontello' position='left' title='Enfold Detroit' link='' linktarget='' linkelement=''] 4870 Cass Ave Detroit, MI, United States (555) 389 976 <a href="mailto: (Email address hidden if logged out) "> (Email address hidden if logged out) </a> [/av_icon_box] [/av_one_fourth][av_one_fourth] [av_icon_box icon='ue808' font='entypo-fontello' position='left' title='Enfold L.A.' link='' linktarget='' linkelement=''] 1818 N Vermont Ave Los Angeles, CA, United States (555) 774 433 <a href="mailto: (Email address hidden if logged out) ">LA@enfold-restaurant.com</a> [/av_icon_box] [/av_one_fourth][av_two_fifth first] [av_heading heading='Locations' tag='h3' color='' custom_font='' style='' size='' subheading_active='' subheading_size='15' padding='10'][/av_heading] [av_google_map height='300px' zoom='auto' saturation='' hue='#632200' mobile_drag_control='aviaTBmobile_drag_control'] [av_gmap_location address='4870 Cass Ave ' city='Detroit, MI' country='United States' long='-83.06618029999998' lat='42.35521869999999' marker='' imagesize='40' tooltip_display=''][/av_gmap_location] [av_gmap_location address='E Grand Blvd' city='Detroit' country='' long='-83.03965289999996' lat='42.3737628' marker='' imagesize='20' tooltip_display=''][/av_gmap_location] [av_gmap_location address='Dexter Ave' city='Detroit' country='' long='-83.1263045' lat='42.3829635' marker='' imagesize='20' tooltip_display=''][/av_gmap_location] [av_gmap_location address='Linwood Ave' city='Detroit' country='' long='-83.11450300000001' lat='42.382062' marker='' imagesize='20'][/av_gmap_location] [/av_google_map] [/av_two_fifth][av_three_fifth] [av_heading tag='h3' padding='10' heading='Get in touch' color='' style='' custom_font='' size='' subheading_active='' subheading_size='15' custom_class=''][/av_heading] [av_contact email='' title='' button='Submit' on_send='' sent='Your message has been sent!' link='manually,http://' subject='' autorespond='' captcha=''] [av_contact_field label='Name' type='text' options='' check='is_empty' width='element_half'][/av_contact_field] [av_contact_field label='E-Mail' type='text' options='' check='is_email' width='element_half'][/av_contact_field] [av_contact_field label='Message' type='textarea' check='is_empty' options='' width=''][/av_contact_field] [/av_contact] [/av_three_fifth] [/av_section] [av_section color='main_color' custom_bg='' src='http://kriesi.at/themes/enfold-restaurant-one-page/files/2014/07/restaurant_hotel_brown-1500x1000.jpg' attachment='380' attachment_size='extra_large' attach='parallax' position='center center' repeat='stretch' video='' video_ratio='16:9' min_height='' min_height_px='500px' padding='large' shadow='no-border-styling' bottom_border='no-border-styling' id='reservations' custom_class=''] [av_heading heading='Reservations' tag='h2' color='custom-color-heading' custom_font='#ffffff' style='blockquote modern-quote modern-centered' size='60' subheading_active='' subheading_size='15' padding='0'][/av_heading] [/av_section] [av_section color='main_color' custom_bg='' src='' attachment='' attachment_size='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' min_height='' min_height_px='500px' padding='large' shadow='no-border-styling' id=''] [av_one_half first] [av_heading tag='h2' padding='0' heading='Select a table & <strong>book now</strong>' color='' style='blockquote modern-quote' custom_font='#ffffff' size='' subheading_active='subheading_below' subheading_size='15' custom_class=''] We will confirm your order via E-Mail [/av_heading] [av_textblock size='' font_color='' color=''] Lorem ipsum dolor sit amet, <strong>consectetuer</strong> adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis. [/av_textblock] [av_contact email=' (Email address hidden if logged out) ' title='' button='Book now' on_send='' sent='Thanks you! <br/>Your reservation has been sent! <br/>You should receive a confirmation soon!' link='manually,http://' subject='' autorespond='We will confirm your reservation as soon as possible ;)' captcha='' color=''] [av_contact_field label='Name' type='text' options='' check='is_empty' width='element_half'][/av_contact_field] [av_contact_field label='E-Mail' type='text' options='' check='is_email' width='element_fourth'][/av_contact_field] [av_contact_field label='Date' type='datepicker' options='' check='is_empty' width='element_fourth'][/av_contact_field] [av_contact_field label='Time' type='select' options='17:30,18:00,18:30,19:00,19:30,20:00,20:30,21:00,21:30' check='is_empty' width='element_fourth'][/av_contact_field] [av_contact_field label='Seats' type='select' options='1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20' check='is_empty' width='element_fourth'][/av_contact_field] [av_contact_field label='Table' type='select' options='Any,1,2,3,4,5,6,7,8' check='is_empty' width='element_fourth'][/av_contact_field] [/av_contact] [av_heading tag='h2' padding='0' heading='Order by <strong>Phone</strong>' color='' style='blockquote modern-quote' custom_font='#ffffff' size='' subheading_active='' subheading_size='15' custom_class=''][/av_heading] [av_textblock size='' font_color='' color=''] Prefer to make your reservation via phone? <strong>Give us a call!</strong> You can contact us between 10am and 22pm ever day of the week. Our Phone number is <strong>(555) 784 332</strong> <strong>Opening hours:</strong> Mon – Fri, 10am – 12pm Sat – Sun, 11am – 04am [/av_textblock] [/av_one_half][av_one_half] [av_image_hotspot src='http://kriesi.at/themes/enfold-restaurant-one-page/files/2014/07/floor_plan.png' attachment='383' attachment_size='full' animation='fade-in' hotspot_layout='numbered'] [av_image_spot tooltip_pos='av-tt-pos-above av-tt-align-centered' tooltip_width='av-tt-default-width' tooltip_style='transparent_dark' hotspot_color='custom' custom_bg='#724019' custom_font='#ffffff' custom_pulse='#a1300d' hotspot_pos='25.9,19.3'] For up to 8 persons [/av_image_spot] [av_image_spot tooltip_pos='av-tt-pos-above av-tt-align-centered' tooltip_width='av-tt-default-width' tooltip_style='transparent_dark' hotspot_color='custom' custom_bg='#724019' custom_font='#ffffff' custom_pulse='#a1300d' hotspot_pos='42.6,19.3'] For up to 8 persons [/av_image_spot] [av_image_spot tooltip_pos='av-tt-pos-above av-tt-align-centered' tooltip_width='av-tt-default-width' tooltip_style='transparent_dark' hotspot_color='custom' custom_bg='#724019' custom_font='#ffffff' custom_pulse='#a1300d' hotspot_pos='28.9,54.9'] For up to 8 persons [/av_image_spot] [av_image_spot tooltip_pos='av-tt-pos-above av-tt-align-centered' tooltip_width='av-tt-default-width' tooltip_style='transparent_dark' hotspot_color='custom' custom_bg='#724019' custom_font='#ffffff' custom_pulse='#a1300d' hotspot_pos='28.9,83.8'] For up to 8 persons [/av_image_spot] [av_image_spot tooltip_pos='av-tt-pos-above av-tt-align-centered' tooltip_width='av-tt-default-width' tooltip_style='transparent_dark' hotspot_color='custom' custom_bg='#724019' custom_font='#ffffff' custom_pulse='#a1300d' hotspot_pos='50.3,43.8'] For up to 4 persons [/av_image_spot] [av_image_spot tooltip_pos='av-tt-pos-above av-tt-align-centered' tooltip_width='av-tt-default-width' tooltip_style='transparent_dark' hotspot_color='custom' custom_bg='#724019' custom_font='#ffffff' custom_pulse='#a1300d' hotspot_pos='50.3,60.6'] For up to 4 persons [/av_image_spot] [av_image_spot tooltip_pos='av-tt-pos-above av-tt-align-centered' tooltip_width='av-tt-default-width' tooltip_style='transparent_dark' hotspot_color='custom' custom_bg='#724019' custom_font='#ffffff' custom_pulse='#a1300d' hotspot_pos='50.3,76.2'] For up to 4 persons [/av_image_spot] [av_image_spot tooltip_pos='av-tt-pos-above av-tt-align-centered' tooltip_width='av-tt-default-width' tooltip_style='transparent_dark' hotspot_color='custom' custom_bg='#724019' custom_font='#ffffff' custom_pulse='#a1300d' hotspot_pos='50.3,91.9'] For up to 4 persons [/av_image_spot] [/av_image_hotspot] [/av_one_half][/av_section]Cheers!
ElliottJanuary 27, 2016 at 2:12 am #572488In reply to: Few questions/issues during test
Hey bulewold!
1. It should be able to import even on an existing site. Your settings will be overwritten though so please keep that in mind.
2. Yes, I imagine those layout builders would not work well with each other.
3. Consider creating a feature request here, https://kriesi.at/support/enfold-feature-requests/, and we’ll see if we can get something added in a future update.
4. Please see here, http://kriesi.at/documentation/enfold/.
5. On mobile I see the icons but on desktop there is some weird behaviour going on with the color section bottom borders. Have you done customizations? Send us a WordPress login and we’ll take a closer look.
Best regards,
ElliottJanuary 27, 2016 at 1:54 am #572487Topic: Few questions/issues during test
in forum Enfoldbulewold
ParticipantOk, this is a GREAT Theme! Have few things to point out.
1. Demo import for existing site does NOT work. I’m assuming existing settings/plugins makes things complicated but just wanted to point out.
2. Theme clashes with visual composer. While I don’t ultimately see reason to have both but VC also has some cool features. wish it played nicer together. (I can get it to work by just updating few coding after two codes has clashed with each other lol)
3. SUGGESTION: You offer side bar selection (backend) for page, post and etc. I wish same was offered to product pages (overview & single) because I’d like just their sidebar to be on left side.
4. Where can I find full documentation? I have few other things I’d like to figure out that I’m still testing.
5. I imported business theme: http://carm.completemedicalservices.com/ and it seems like responsive for phone is not working. Meaning same demo site by enfold, three icon right under banner gets lined up top to bottom but on my site, it just stay next to each other all squeezed so you can’t even read text… Is there an issue or setting I’m overlooking?
January 27, 2016 at 12:09 am #572461Topic: Replace Easy Slider Full Width Once Mobile Is triggered?
in forum Enfoldshefferz
ParticipantHello,
I am using a full width easy slider for a page introduction with text in the image.
However once the screen width hits ~740px the slider becomes unreadable and unproportional to the screen.
I want the slider there on desktop versions, however I want it to disappear and have a different slider take its place with a different picture that is mobile friendly once it hits the ~740px width.
January 27, 2016 at 12:01 am #572452In reply to: Contact form 7 half width
Hey Stefan!
As you’re using custom code it wouldn’t be possible for us to help you, instead i’d suggest you to use Enfold’s grid code with CF7, here’s all the CSS code you’d need for that:
.wpcf7-form, .wpcf7-response-output{ clear:both; } .wpcf7-form-control-wrap { display: block !important } .wpcf7-form p br{display:none;} .wpcf7-form label {display:block; visibility: visible; position: relative; } .wpcf7-form label, .modified_width:before{display:block; visibility: visible; position: relative; margin-bottom: 7px; font-weight: 600;} .wpcf7-form p{ position: relative; clear:both; float:left; width:100%;} .wpcf7-form p.hidden{position: absolute; width:0px; left:0; top:0; } .wpcf7-form .form_element_half{width:49.5%; float:left; margin-left:1%; clear:none;} .wpcf7-form .form_element_third{width:32.6%; float:left; margin-left:1%; clear:none;} .wpcf7-form .form_element_two_third{width:66.4%; float:left; margin-left:1%; clear:none;} .wpcf7-form .form_element_fourth{width:24.2%; float:left; margin-left:1%; clear:none;} .wpcf7-form .form_element_three_fourth{width:74.8%; float:left; margin-left:1%; clear:none;} .wpcf7-form .first_form{clear:both;margin-left:0;} #top .wpcf7-form .wpcf7-text, #top .wpcf7-form .wpcf7-select, #top .wpcf7-form .wpcf7-textarea{ width:100%; margin-bottom:0; display:inline; min-width:50px; padding:13px; border-radius: 2px; } #top .wpcf7-form .wpcf7-select{ -webkit-appearance: none; border-radius:0px; background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAANCAYAAAC+ct6XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6RjBBRUQ1QTQ1QzkxMTFFMDlDNDdEQzgyNUE1RjI4MTEiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6RjBBRUQ1QTU1QzkxMTFFMDlDNDdEQzgyNUE1RjI4MTEiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpGMEFFRDVBMjVDOTExMUUwOUM0N0RDODI1QTVGMjgxMSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpGMEFFRDVBMzVDOTExMUUwOUM0N0RDODI1QTVGMjgxMSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pk5mU4QAAACUSURBVHjaYmRgYJD6////MwY6AyaGAQIspCieM2cOjKkIxCFA3A0TSElJoZ3FUCANxAeAWA6IOYG4iR5BjWwpCDQCcSnNgxoIVJCDFwnwA/FHWlp8EIpHSKoGgiggLkITewrEcbQO6mVAbAbE+VD+a3IsJTc7FQAxDxD7AbEzEF+jR1DDywtoCr9DbhwzDlRZDRBgACYqHJO9bkklAAAAAElFTkSuQmCC); background-position: center right; background-repeat: no-repeat; border-radius: 2px; } .wpcf7-form .button { margin: 0; padding: 16px 20px; border-radius: 2px; border-bottom-width: 1px; border-bottom-style: solid; font-weight: normal; font-size: 12px; min-width: 142px; outline: none; } .wpcf7-form p input, .wpcf7-form p textarea, .wpcf7-form p select{ -webkit-transition: all 0.3s ease-in-out; -moz-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out; } #top .wpcf7-form-control-wrap { display: block !important } #top .wpcf7-response-output{ float: left; padding: 17px; border-width: 1px; border-style: dashed; margin-left: 0; } #top .wpcf7-response-output.wpcf7-validation-errors, #top .wpcf7-response-output.wpcf7-spam-blocked, #top .wpcf7-response-output.wpcf7-mail-sent-ng{ background-color: #FFF8F4; border-color: #CDA18F; text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7); color: #AF2C20; } #top .wpcf7-response-output.wpcf7-mail-sent-ok{ background-color: #E0F1B5; border-color: #8BAF5B; text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7); color: #4F5F39; } #top .wpcf7-not-valid-tip { color: #EF5D4F; display: block; } #top .wpcf7-display-none{ display: none; }Once you added that re-adjust the HTML you’re already have, another thing you can do is create an Enfold contact form on a separate page, look at the generated HTML source and simply replicate it on CF7.
Cheers!
JosueJanuary 26, 2016 at 10:55 pm #572421Topic: Adding images to a table element
in forum Enfoldyes9310
ParticipantIs it possible to add an image to a table element along with bulleted text on the cell below it? If I have one long column box on the right, I cant put two boxes to aling next to it, if there’s already another box at the top. It pushes the new two boxes way down the page. Any help ,much appreciated.
January 26, 2016 at 10:44 pm #572413antilimited
ParticipantHi
I’m implementing a site for a restaurant client of mine. We need to add a reservation widget from OpenTable, one of the major suppliers of this booking systems. I’m having problems getting it to display right with Enfold.

What it should look like
What it actually looks likeIt’s inheriting custom fonts for the site via CSS I’ve defined for elsewhere in the site, which is good, but there’s obviously a CSS conflict. So there are no visible icons or rules/borders, and the drop-downs are not working. My client will not accept this as it makes for a less good user experience
I found this previous topic in which another user has hit pretty much the same issue with the same 3rd party widget. The code suggestions in that thread did not help me, and the user’s client’s site still seems to have issues with displaying the OpenTable widget.
Is there a way to implement this OpenTable widget ‘as is’, so it can call the external CSS required for it to look like it’s supposed to do? I ahve inspected the code and I can see various variables. Following the advice frm the other topic, I have been able to change some parameters eg width (see below) but not get icons, borders or drop-down menus to work as they need to.
.OT_submit, .OT_submit > * { width: 160px !important; }I have placed the OpenTable code inside a WP widget so I can use it in a footer socket, as well as embedded into an advanced layout. Thanks in advance for your advice on how to get this 3rd party code to display the functionality I require.
-
This topic was modified 10 years, 2 months ago by
antilimited. Reason: Neater formatting
January 26, 2016 at 10:31 pm #572408Hey Hafeez Ullah!
Please include the exact file path when you don’t wordpress will only recognize some files like header.php, footer.php etc
Example:
Parent Theme > file
Child Theme > fileParent Theme > folder / file
Child Theme > folder / filePlease refer to https://wordpress.org/support/topic/overriding-parent-theme-sub-files-with-a-child-theme-how for more details.
Regards,
Vinay -
This topic was modified 10 years, 2 months ago by
-
AuthorSearch Results
-
Search Results
-
Topic: set margin top
hello, here: http://www.jeelsites.nl/wptest/finoven/
ive got this title FINOVEN in the vine region
there is too much space between the word FINOVEN and the edge of the vine region.
so ive set the padding on 0px. <h2 style=”text-align: center; padding-top:0px;”>FINOVEN</h2>
but there is still too much space.
how to edit / manage this?Topic: Verschiedene Footer
Hi,
Whenever i add a special heading the font style always appears as italic. I tried the solutions here: https://kriesi.at/support/topic/styling-special-heading-elements/ but without succes. Even with the code inspector i see the css rule states font-style: normal but the heading always appears as italic. How can i change the font size to normal? I even tried:
.av-special-heading {font-style:normal !important;} but no succes :(
Example: http://localmakers.nl/ in the left column you see all the heading in italic.
Thanks in advance!
Using Avia Layout I am trying to set up a Coloured Section with some text & a button over the top (like the yellow section on the Homepage of your Construction Demo). When I add the Button element however it doesn’t line up with the text. Is there a quick CSS code to wrap these elements to be on the same line?
Hi. For Portfolio items in the “Masonry” Media Element, the excerpt or preview text does NOT display on mobile devices and small tablets in portfolio view. The title displays, but not the excerpt. On desktops and larger tablets in landscape view I see BOTH the title and excerpt. But on smaller screens I only see the title. How can you make the excerpt or preview text display for Portfolio items in the “Masonry” Media Element on small screens?
I provided a link in the private content below.
Thank you.
Ok, this is a GREAT Theme! Have few things to point out.
1. Demo import for existing site does NOT work. I’m assuming existing settings/plugins makes things complicated but just wanted to point out.
2. Theme clashes with visual composer. While I don’t ultimately see reason to have both but VC also has some cool features. wish it played nicer together. (I can get it to work by just updating few coding after two codes has clashed with each other lol)
3. SUGGESTION: You offer side bar selection (backend) for page, post and etc. I wish same was offered to product pages (overview & single) because I’d like just their sidebar to be on left side.
4. Where can I find full documentation? I have few other things I’d like to figure out that I’m still testing.
5. I imported business theme: http://carm.completemedicalservices.com/ and it seems like responsive for phone is not working. Meaning same demo site by enfold, three icon right under banner gets lined up top to bottom but on my site, it just stay next to each other all squeezed so you can’t even read text… Is there an issue or setting I’m overlooking?
Hello,
I am using a full width easy slider for a page introduction with text in the image.
However once the screen width hits ~740px the slider becomes unreadable and unproportional to the screen.
I want the slider there on desktop versions, however I want it to disappear and have a different slider take its place with a different picture that is mobile friendly once it hits the ~740px width.
Is it possible to add an image to a table element along with bulleted text on the cell below it? If I have one long column box on the right, I cant put two boxes to aling next to it, if there’s already another box at the top. It pushes the new two boxes way down the page. Any help ,much appreciated.
