-
AuthorSearch Results
-
July 9, 2016 at 12:47 pm #658760
Hi,
Glad we could help, please let us know if you should need any more help on the topic.
Thanks,
RikardJuly 9, 2016 at 12:43 pm #658758hi, sorry the the projects stop for a time.
the site is at maintenance mode and i have deactivate yoast plugin, because i can´t edit the product category pages in the backend, if i activate it by the enfold theme. So you must activate it.
I sent a pm.
kind regardsJuly 9, 2016 at 11:48 am #658739Hi Dörte,
I don’t understand most of your posts above since my german is not too good but I’ve tagged our german speaking moderator for the topic, please wait for his reply. Note that each time you reply to your own topic it gets pushed to the back of our support queue so please try not to do so unless you think it’s absolutely necessary.
Best regards,
RikardJuly 9, 2016 at 10:01 am #658722In reply to: Removing underline in button on Easy Slider
Hey!
Change the CSS with
#top .avia-button.avia-color-light {
text-decoration: none;
}let us know if that works out for you.
Regards,
BasilisJuly 9, 2016 at 7:11 am #658706I figured out that you can make two sections, one that ill hide on desktops/tablets, one that ill hide on mobiles.
I named the section socialjustice, but when I use .socialjustice as an identifier, it doesn’t work.
Here is the code I’m using:
@media only screen and (max-width: 728px) {
.socialjustice {
display: none !important;
}}What a I missing here?
July 9, 2016 at 5:06 am #658696I’ve been trying, trying, trying to use the @mobile stuff and its just not working.
I don’t want to simply disable the parallax, I want to replace the parallax effect with a simple background (image or color) on mobile – while keeping the other elements there.I do not want to hide the entire section on mobile.
According to you guys, the code automatically disables the parallax effect. This leaves a tiny version of the desktop image sandwiched in between two black boxes. Is there a way to get rid of this small image and black boxes and replace it with a different background? In theory, the code should be pretty simple, but its not working. I tried using your code from the previous message as a test and it didn’t work.
At the moment, I would prefer not to hire a freelance developer. This is not a complicated issue. In the past, I’ve had theme support go into my site and make the changes for me. I’m even asking for that, but can you please help me get this done.
Thank you
July 9, 2016 at 4:26 am #658692Topic: Tables on mobile…
in forum Enfoldmrlreynolds
ParticipantHi,
1. there seems to be an issue with the tables on mobile now, when set to display data and then set to scroll on mobile all of the text overlaps.
2. when using WPML and the dropdown language selector option, we would like to see the small down arrow after the first language at the top in the topbar so people can see that there are options. how do we add this back in please?Thanks,.
July 9, 2016 at 3:46 am #658685In reply to: Mobile Menu Sticky Issue
Hi,
You can disable that behaviour but you have to modify the js > avia.js file which is a script file that can’t be modified in a child theme. You have to repeat the modification every time you update the theme. If you’re still interested, edit the file then look for this code around line 464:
win.scrollTop(0); mobile_advanced.css({display:'block'});Remove this line:
win.scrollTop(0);Best regards,
IsmaelJuly 9, 2016 at 3:30 am #658680Hi,
I’m sorry but we cannot hand in our ip addresses. A workaround is to add an actual video element in addition to the color section. Hide it on desktop then display it mobile. You can do that by using css media queries. More info here: http://kriesi.at/documentation/enfold/hide-menu-itemselements-on-mobile/
Best regards,
IsmaelJuly 9, 2016 at 3:20 am #658676In reply to: Content slider arrows
Hi,
Please use this to make it transparent:
.avia-slideshow-arrows a:before { background: transparent; }And change the color of the arrows with this:
#top .avia-slideshow-arrows a { color: red; }Best regards,
IsmaelJuly 9, 2016 at 3:17 am #658675In reply to: content collapsing
Hi,
Add a unique Section ID to the top color section then use that in place of the “.avia-section” selector. For example, if you use “custom-section” in the Section ID field, the selector would be “#custom-section”.
Best regards,
IsmaelJuly 9, 2016 at 2:57 am #658665Hi!
Thank you for using Enfold.
The solution on the previous thread is not going to work properly anymore because the product template has been modified. Please undo the modifications then follow the instructions here: https://kriesi.at/support/topic/sidebar-rechts-single-page/#post-580220
And if possible, please post long codes on pastebin.com.
Best regards,
IsmaelJuly 9, 2016 at 2:45 am #658662In reply to: Youtube videos on smartphones:
Hey,
No, i’m afraid that’s not possible, mobile browsers disable video autoplay due to limited data-usage.
Best regards,
JosueJuly 9, 2016 at 2:37 am #658656In reply to: Blog and Post Sidebar Color Help
Hi,
The sidebar height adapts to the content height now. Replace the css gradient with the following:
.container_wrap.sidebar_right { background: -webkit-gradient(linear,right top,left top,color-stop(#f1f1f1,0.295),color-stop(white,0)); background: -webkit-linear-gradient(right,#f1f1f1 29.5%,white 0); background: -moz-linear-gradient(right,#f1f1f1 29.5%,white 0); background: -o-linear-gradient(right,#f1f1f1 29.5%,white 0); background: linear-gradient(to left,#f1f1f1 29.5%,white 0); }If it’s not working, try this:
.container_wrap.sidebar_right { background: -webkit-gradient(linear,right top,left top,color-stop(#f1f1f1,0.295),color-stop(white,0)); background: -webkit-linear-gradient(right,#f1f1f1 29.5%,white 0); background: -moz-linear-gradient(right,#f1f1f1 29.5%,white 0); background: -o-linear-gradient(right,#f1f1f1 29.5%,white 0); background: -ms-linear-gradient(to left,#f1f1f1 29.5%,white 0); background: linear-gradient(left,#f1f1f1 29.5%,white 0); }Best regards,
IsmaelJuly 9, 2016 at 1:45 am #658637In reply to: Grid Row 100% Height
Hi,
Can you try implementing this (just need to swap some classes to target grid row instead of accordion slider)?
Best regards,
JosueJuly 9, 2016 at 1:43 am #658635In reply to: Menu Bordered Button
Hey!
Try adding this code to the Quick CSS:
#top #header .av-main-nav > li.av-menu-button-bordered > a .avia-menu-text, #top #header .av-main-nav > li.av-menu-button-bordered > a .avia-menu-subtext{ color: #7d7d7d !important; }Cheers!
JosueJuly 9, 2016 at 12:54 am #658623In reply to: Transparent Mobile Menu
Hi Ygit,
The solution works but creates two more issues.
1. The three bars in the mobile menu do not turn transparent (white) as on the tablet.
2. All pages that do NOT have a slider with transparent menu are cut off when viewed on mobile. (The text/image at the top of these pages fall behind the menu bar).Best regards
SimonJuly 8, 2016 at 11:43 pm #658613In reply to: Custom Post Type mystery template
Just as an FYI and for anyone else, I just added this to the top of the template-builder.php file in my Child Theme:
if ( is_singular( ‘books’ ) ) {
get_template_part( ‘single-books’ ); exit();
}and caused the correct template to be used, so I think it’s fine now, but still confused why it’s not using the single-books.php right away.
July 8, 2016 at 10:49 pm #658608In reply to: Remove images from Blog Grid layout
Hi Yigit,
Thanks for the response but it doesn’t seem to work? Do I need to do anything else within the site to help the code work?
Below is the complete quick css box in case something is contradicting it? Thanks for your help.
#avia-menu {
margin-left: 30%;
}
@media only screen and (max-width: 767px) {
h1.av-special-heading-tag { font-size: 35px !important; }}.av-subheading_below {
margin-top:50px!important;
}.av-image-caption-overlay p {
text-align: left;
margin-top: -70px!important;
}@media only screen and (max-width: 767px) {
.av-subheading {
font-size: 20px!important;
}}.page-id-144 .avia-content-slider .slide-image { display: none; }
July 8, 2016 at 7:04 pm #658561Topic: Menu placement
in forum EnfoldCurlyHost
ParticipantI was hoping to have two menus situated similarly to http://wellnessmama.com/ – is it possible for the secondary menu to either show up below the header or to the right of the logo as opposed to the top little area?
July 8, 2016 at 6:16 pm #658531Topic: Full Length Logo in Header w/shirnk capabilities
in forum Enfoldmydpidesign
ParticipantHi,
Love the theme but bit stuck on one issue. I would like to place a logo at the top of the header that is full width ( 2020px ) x 229px. I tried to set the logo as a background image in the header … which looks good on a laptop but it does not shrink with the screen size.I also tried the following quick css:
.logo img {
height: 100px;
width: 1200px;
}
and that did not work either…Also tried css…
.html_header_top.html_logo_center .logo {
left: 0;
-webkit-transform: none;
-ms-transform: none;
transform: none;
}
and it almost worked, just not all the way to the edges, but almost there.Do you have any suggestions ?
Thank You very much.
July 8, 2016 at 5:44 pm #658515In reply to: More visible form validation
Hi!
Please add following code to Quick CSS
#top #wrap_all .error .input_checkbox_label { text-decoration: underline; }Best regards,
YigitJuly 8, 2016 at 5:01 pm #658500Topic: Custom CSS for two custom widget headers?
in forum EnfoldDbertelsen
ParticipantHi guys,
I’ve successfully used your documentation to add a new, custom widget to the header area (i’ve named them header1 and header2).
The code in the functions.php file for the two headers are:add_action( 'ava_after_main_menu', 'enfold_customization_header_widget_area' ); function enfold_customization_header_widget_area() { if(is_front_page()){ dynamic_sidebar( 'header1' ); dynamic_sidebar( 'header2' ); } }However, the two custom widgets needs to be located two different places, but for some reason the CSS code wont work properly since both custom widget headers are only affected by the #header2 .widget code (below):
/* Header clock CSS */ #header1 .widget { left: 91%; padding-top: 0px; position: absolute; top: 80%; padding-bottom: 0px; z-index: 1; } /* Header ticker CSS */ #header2 .widget { left: 75%; padding-top: 0px; position: absolute; top: 90%; padding-bottom: 0px; z-index: 1; }July 8, 2016 at 4:28 pm #658496In reply to: WPML language switcher centered on sidebar logo menu
Hey Andy,
Your solution is not working as I expected, but I have done this repositioning myself, setting the top WPML sidebar menu switcher positions to centre by adding the following lines:
.html_header_sidebar #top .avia_wpml_language_switch { border-bottom-style: none; position: relative; left: 50%; margin-left: -50px; }However, I am still in a need to replace the flags images with just the language names in text – “EN” and “RU”
I suppose that this switcher is the default that comes with the Enfold built-in compatibility for WPML plugin. Changing the WPML plugin settings in “Language switcher options” under “Language switcher style” and “What to include in the language switcher” settings doesn`t make any effect on the actual visual appearance with the WPML switcher in the sidebar menu. Please help.Regards
July 8, 2016 at 4:25 pm #658495In reply to: tema Enfold duvidas
Bom dia Jordan ja abri um tópico no seu site e gostaria de saber referente aos arquivos .zip se devo instalar os 2 ou não!!
Obrigada
DeboraJuly 8, 2016 at 3:58 pm #658490Topic: set-the-width-of-the-grid-row 2
in forum Enfoldingevandeweem
ParticipantSorry i was just replying and then the threat was closed….sorry sorry
https://kriesi.at/support/topic/set-the-width-of-the-grid-row/#post-658480
(its about this page: http://atalba.nl/enfold/)what if the grid is on another page (nog home)
eg: contact page….
i’ve tried to change home to contact (name of page) does nog work….contact #av-layout-grid-1 {
max-width: 1310px;
display: table;
margin: 0 auto;
}-
This topic was modified 9 years, 9 months ago by
ingevandeweem.
July 8, 2016 at 3:54 pm #658489I tried this.
@media only screen and (max-width: 1250px) {
@media only screen and (max-width: 1250px)
.responsive #top .av-menu-mobile-active .av-subnav-menu {
display: none !important;
}
#top .mobile_menu_toggle {
display: block!important;
}
}but it did not fully work..
the mobile sub nav is not clickable and the desktop nav still is showing..
July 8, 2016 at 3:43 pm #658483In reply to: Enfold demo import question
Hi Yigit,
Sorry to bug you, but I am confused what I need to paste in that debug section. Do I paste this from the raw paste data into the debug section of the page I want it to appear on?
[av_fullscreen size='extra_large' animation='fade' autoplay='false' interval='5' control_layout='' scroll_down='aviaTBscroll_down']
[av_fullscreen_slide slide_type='image' id='548' position='center center' video='http://' mobile_image='' video_cover='' title='New spring edition for women and men now available' custom_title_size='40' custom_content_size='18' caption_pos='caption_left' link_apply='button button-two' link='lightbox' link_target='' button_label='Women’s Collection' button_color='theme-color' link1='product_cat,13' link_target1='' button_label2='Men’s Collection' button_color2='dark' link2='product_cat,13' link_target2='' font_color='custom' custom_title='#2c2c2c' custom_content='#818181' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='']
The new beautiful spring collection, created by star designer Konrad Kries is now available.
[/av_fullscreen_slide]
[av_fullscreen_slide slide_type='image' id='547' position='top left' video='http://' mobile_image='' video_cover='' title='Start with us into the new season!' custom_title_size='40' custom_content_size='18' caption_pos='caption_right' link_apply='button button-two' link='lightbox' link_target='' button_label='For Women' button_color='theme-color' link1='product_cat,12' link_target1='' button_label2='For Men' button_color2='dark' link2='product_cat,11' link_target2='' font_color='custom' custom_title='#2c2c2c' custom_content='#818181' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='']
Those are the styles that you need for the next season. Make sure to grab your early bird coupon!
[/av_fullscreen_slide]
[av_fullscreen_slide slide_type='image' id='549' position='top left' video='http://' mobile_image='' video_cover='' title='Win a shopping trip<br/>with our styling experts' custom_title_size='40' custom_content_size='18' caption_pos='caption_center' link_apply='button' link='lightbox' link_target='' button_label='Sign up now!' button_color='dark' link1='page,76' link_target1='' button_label2='Click me' button_color2='light' link2='manually,http://' link_target2='' font_color='custom' custom_title='#2c2c2c' custom_content='#818181' overlay_enable='aviaTBaviaTBoverlay_enable' overlay_opacity='0.6' overlay_color='#ffffff' overlay_pattern='' overlay_custom_pattern='']
Fancy doing something a little different this autumn? Win this great shopping trip to London! We pay for everything!
All expenses including flight and a meal at a gourmet restaurant of your choice will be paid for!
[/av_fullscreen_slide]
[av_fullscreen_slide slide_type='image' id='551' position='center right' video='' mobile_image='' video_cover='' title='Winter Collection coming soon!' custom_title_size='40' custom_content_size='18' caption_pos='caption_left' link_apply='button' link='lightbox' link_target='' button_label='Yes, notify me!' button_color='dark' link1='manually,#sign-up' link_target1='' button_label2='' button_color2='light' link2='manually,http://' link_target2='' font_color='custom' custom_title='#2c2c2c' custom_content='#818181' overlay_opacity='0.1' overlay_color='' overlay_pattern='' overlay_custom_pattern='']
Want to get notified once the new winter collection by Georgio Adriani is released?
[/av_fullscreen_slide]
[/av_fullscreen][av_layout_row border='' min_height='0' color='main_color' mobile='av-flex-cells' id='collections']
[av_cell_one_fourth vertical_align='top' padding='0px' padding_sync='true' background_color='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat'][av_image src='https://kriesi.at/themes/enfold-shop/files/2015/03/winter-girl-small-495x400.jpg' attachment='551' attachment_size='portfolio' align='center' animation='no-animation' styling='no-styling' hover='av-hover-grow' link='product,66' target='' caption='yes' font_size='' appearance='' overlay_opacity='0.7' overlay_color='#6786a1' overlay_text_color='#ffffff']
NEW
WINTER COLLECTION
[/av_image][/av_cell_one_fourth][av_cell_one_fourth vertical_align='top' padding='0px' padding_sync='true' background_color='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat']
[av_image src='https://kriesi.at/themes/enfold-shop/files/2015/03/couple-sitting-495x400.jpg' attachment='546' attachment_size='portfolio' align='center' animation='no-animation' styling='no-styling' hover='av-hover-grow' link='product_cat,15' target='' caption='yes' font_size='' appearance='' overlay_opacity='0.7' overlay_color='#6786a1' overlay_text_color='#ffffff']
LATEST
STREET CLOTHES
[/av_image][/av_cell_one_fourth][av_cell_one_fourth vertical_align='top' padding='0px' padding_sync='true' background_color='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat']
[av_image src='https://kriesi.at/themes/enfold-shop/files/2015/03/girls-shopping-desat-495x400.jpg' attachment='549' attachment_size='portfolio' align='center' animation='no-animation' styling='no-styling' hover='av-hover-grow' link='product_cat,12' target='' caption='yes' font_size='' appearance='' overlay_opacity='0.7' overlay_color='#6786a1' overlay_text_color='#ffffff']
FRESH
SPORTSWEAR
[/av_image][/av_cell_one_fourth][av_cell_one_fourth vertical_align='top' padding='0px' padding_sync='true' background_color='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat']
[av_image src='https://kriesi.at/themes/enfold-shop/files/2015/03/hipster-girls-working-495x400.jpg' attachment='554' attachment_size='portfolio' align='center' animation='no-animation' styling='no-styling' hover='av-hover-grow' link='product_cat,10' target='' caption='yes' font_size='' appearance='' overlay_opacity='0.7' overlay_color='#6786a1' overlay_text_color='#ffffff']
FUNKY
ACCECCOIRS
[/av_image][/av_cell_one_fourth]
[/av_layout_row][av_section min_height='' min_height_px='500px' padding='default' shadow='no-border-styling' bottom_border='no-border-styling' id='' color='alternate_color' custom_bg='' src='' attachment='' attachment_size='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='']
[av_heading heading='Recent Top Sellers' tag='h3' style='blockquote modern-quote modern-centered' size='30' subheading_active='' subheading_size='15' padding='10' color='' custom_font=''][/av_heading][av_productslider columns='4' items='8' offset='0' sort='0' autoplay='yes' interval='5']
[/av_section][av_layout_row border='' min_height='0' color='alternate_color' mobile='av-flex-cells' id='']
[av_cell_one_half vertical_align='middle' padding='50px' padding_sync='true' background_color='#f8f8f8' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat'][av_heading tag='h3' padding='10' heading='Lorem ipsum dolor sit amet, consectetuer adipiscing elit. ' color='' style='blockquote modern-quote' custom_font='' size='30' subheading_active='' subheading_size='15' custom_class=''][/av_heading]
[av_textblock size='' font_color='' color='']
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim.
[/av_textblock][av_productgrid columns='3' items='6' offset='0' sort='0' paginate='no']
[/av_cell_one_half][av_cell_one_half vertical_align='top' padding='0px' padding_sync='true' background_color='#f8f8f8' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat']
[av_image_hotspot src='https://kriesi.at/themes/enfold-shop/files/2015/03/lady-in-blue.jpg' attachment='556' attachment_size='full' animation='fade-in' hotspot_layout='numbered' hotspot_tooltip_display='av-permanent-tooltip' hotspot_mobile='aviaTBhotspot_mobile']
[av_image_spot tooltip_pos='av-tt-pos-left av-tt-align-centered' tooltip_width='av-tt-default-width' tooltip_style='main_color av-tooltip-shadow' link='product,65' hotspot_color='custom' custom_bg='#6786a1' custom_font='#ffffff' custom_pulse='' hotspot_pos='6.5,56.9']
Hairdo by Roger Ramoni
[/av_image_spot]
[av_image_spot tooltip_pos='av-tt-pos-left av-tt-align-centered' tooltip_width='av-tt-default-width' tooltip_style='main_color av-tooltip-shadow' link='product,257' hotspot_color='custom' custom_bg='#6786a1' custom_font='#ffffff' custom_pulse='' hotspot_pos='19.8,53']
Glasses by Victor Secreni
[/av_image_spot]
[av_image_spot tooltip_pos='av-tt-pos-left av-tt-align-centered' tooltip_width='av-tt-default-width' tooltip_style='main_color av-tooltip-shadow' link='product,262' hotspot_color='custom' custom_bg='#6786a1' custom_font='#ffffff' custom_pulse='' hotspot_pos='38.9,58.4']
Nail polish by Sandra Sounders
[/av_image_spot]
[av_image_spot tooltip_pos='av-tt-pos-below av-tt-align-centered' tooltip_width='av-tt-default-width' tooltip_style='main_color av-tooltip-shadow' link='product,495' hotspot_color='' custom_bg='' custom_font='' custom_pulse='' hotspot_pos='70,54.3']
“Red Velvet” Dress by Varia Vereni
[/av_image_spot]
[/av_image_hotspot][/av_cell_one_half]
[/av_layout_row][av_section min_height='' min_height_px='500px' padding='large' shadow='no-border-styling' bottom_border='no-border-styling' id='' color='alternate_color' custom_bg='' src='' attachment='' attachment_size='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='']
[av_one_half first][av_icon_box position='left_content' boxed='' icon='ue8b1' font='entypo-fontello' title='Worldwide delivery' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='' custom_bg='' custom_font='' custom_border='']
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.
[/av_icon_box][/av_one_half][av_one_half]
[av_icon_box position='left_content' boxed='' icon='ue8e2' font='entypo-fontello' title='Free shipping' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='' custom_bg='' custom_font='' custom_border='']
Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.
[/av_icon_box][/av_one_half][av_one_half first]
[av_icon_box position='left_content' boxed='' icon='ue824' font='entypo-fontello' title='Secure Payment' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='' custom_bg='' custom_font='' custom_border='']
Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim.
[/av_icon_box][/av_one_half][av_one_half]
[av_icon_box position='left_content' boxed='' icon='ue8b9' font='entypo-fontello' title='24/7 Support' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='' custom_bg='' custom_font='' custom_border='']
enean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus.
[/av_icon_box][/av_one_half]
[/av_section][av_section min_height='' min_height_px='500px' padding='default' shadow='no-shadow' bottom_border='no-border-styling' id='sign-up' color='main_color' custom_bg='' src='https://kriesi.at/themes/enfold-shop/files/2015/03/hipster-girls-working.jpg' attachment='554' attachment_size='full' attach='parallax' position='top center' repeat='stretch' video='' video_ratio='16:9' overlay_enable='aviaTBoverlay_enable' overlay_opacity='0.7' overlay_color='#6786a1' overlay_pattern='' overlay_custom_pattern='']
[av_heading tag='h3' padding='10' heading='Want to stay up to date? Subscribe to our Newsletter!' color='custom-color-heading' style='blockquote modern-quote modern-centered' custom_font='#ffffff' size='30' subheading_active='' subheading_size='15' custom_class=''][/av_heading]
[av_one_fifth first]
[/av_one_fifth][av_three_fifth]
[av_contact (Email address hidden if logged out) ' title='' button='Subscribe' on_send='' sent='Thanks! You will receive an email soon!' link='page,74' subject='' autorespond='' captcha='' hide_labels='aviaTBhide_labels' color='av-custom-form-color av-light-form']
[av_contact_field label='Name' type='text' options='' check='is_empty' width='element_third' multi_select=''][/av_contact_field]
[av_contact_field label='E-Mail' type='text' options='' check='is_email' width='element_third' multi_select=''][/av_contact_field]
[/av_contact][/av_three_fifth][av_one_fifth]
[/av_one_fifth][/av_section]
July 8, 2016 at 3:36 pm #658479Hi,
Please add following code to Quick CSS
@media only screen and (max-width: 1024px) { @media only screen and (max-width: 767px) .responsive #top .av-menu-mobile-active .av-subnav-menu { display: none !important; } #top .mobile_menu_toggle { display: block!important; } }Best regards,
YigitJuly 8, 2016 at 3:31 pm #658475vectorcriz
ParticipantHi,
Question regarding Blog Post Module: I use the setting “einzelner Autor kleines Miniaturbild”/ “single author small thumb”. As long as the side bar is activated, the thumb image appears to the left of the HL and the post text. that’s nice and how I want it to appear. But once I disable the sidebar the thumb image appears centered on top of the HL and post text. How can I prevent or change? Thanks in advance for a hint
regardsChristian
-
This topic was modified 9 years, 9 months ago by
-
AuthorSearch Results
-
Search Results
-
Topic: Tables on mobile…
Hi,
1. there seems to be an issue with the tables on mobile now, when set to display data and then set to scroll on mobile all of the text overlaps.
2. when using WPML and the dropdown language selector option, we would like to see the small down arrow after the first language at the top in the topbar so people can see that there are options. how do we add this back in please?Thanks,.
Topic: Menu placement
I was hoping to have two menus situated similarly to http://wellnessmama.com/ – is it possible for the secondary menu to either show up below the header or to the right of the logo as opposed to the top little area?
Hi,
Love the theme but bit stuck on one issue. I would like to place a logo at the top of the header that is full width ( 2020px ) x 229px. I tried to set the logo as a background image in the header … which looks good on a laptop but it does not shrink with the screen size.I also tried the following quick css:
.logo img {
height: 100px;
width: 1200px;
}
and that did not work either…Also tried css…
.html_header_top.html_logo_center .logo {
left: 0;
-webkit-transform: none;
-ms-transform: none;
transform: none;
}
and it almost worked, just not all the way to the edges, but almost there.Do you have any suggestions ?
Thank You very much.
Hi guys,
I’ve successfully used your documentation to add a new, custom widget to the header area (i’ve named them header1 and header2).
The code in the functions.php file for the two headers are:add_action( 'ava_after_main_menu', 'enfold_customization_header_widget_area' ); function enfold_customization_header_widget_area() { if(is_front_page()){ dynamic_sidebar( 'header1' ); dynamic_sidebar( 'header2' ); } }However, the two custom widgets needs to be located two different places, but for some reason the CSS code wont work properly since both custom widget headers are only affected by the #header2 .widget code (below):
/* Header clock CSS */ #header1 .widget { left: 91%; padding-top: 0px; position: absolute; top: 80%; padding-bottom: 0px; z-index: 1; } /* Header ticker CSS */ #header2 .widget { left: 75%; padding-top: 0px; position: absolute; top: 90%; padding-bottom: 0px; z-index: 1; }Sorry i was just replying and then the threat was closed….sorry sorry
https://kriesi.at/support/topic/set-the-width-of-the-grid-row/#post-658480
(its about this page: http://atalba.nl/enfold/)what if the grid is on another page (nog home)
eg: contact page….
i’ve tried to change home to contact (name of page) does nog work….contact #av-layout-grid-1 {
max-width: 1310px;
display: table;
margin: 0 auto;
}Hi,
Question regarding Blog Post Module: I use the setting “einzelner Autor kleines Miniaturbild”/ “single author small thumb”. As long as the side bar is activated, the thumb image appears to the left of the HL and the post text. that’s nice and how I want it to appear. But once I disable the sidebar the thumb image appears centered on top of the HL and post text. How can I prevent or change? Thanks in advance for a hint
regardsChristian
