Viewing 30 results - 83,101 through 83,130 (of 142,735 total)
  • Author
    Search Results
  • #758740

    Hey sensiblekaren,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    #top .av_header_transparency.av_alternate_logo_active .logo a > img {
        opacity: 1!important;
        filter: alpha(opacity=1)!important;
    }
    

    Best regards,
    Vinay

    Hi,

    Great, glad you got it working and thanks for the feedback. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

    #758718

    Hi Valerie,

    Great, glad you got it working. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

    #758716

    Hi,

    No problem, glad you found that option. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

    Hi,

    Great, glad we could help :-)

    Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

    Hi,

    Reduce the gap on the top of the page by adjusting the header height from Enfold > Header > Header Custom Height

    To reduce the subheading gap we updated the code to below css

    /* Sub heading*/
    .av-subheading.av-subheading_above p {
    	font-size:30px!important;
            margin:10px 0!important;
    }

    Please refresh the page a few times to preview the changes :)

    Best regards,
    Vinay

    #758703

    In reply to: Error in href lang

    Hi Nunzio,

    Great, please let us know if you should need any further help on the topic.

    Best regards,
    Rikard

    Hi Karen,

    Ok, thanks for the feedback. We’ll keep the thread open in case you should need any further help on the topic.

    Best regards,
    Rikard

    #758681

    In reply to: Enfold Shop Demo

    Hi,

    Great, glad you got it working. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

    #758671
    Jason
    Participant

    Hi there,
    I have a site which has 10 top level navigation items currently (one being ‘home’ which I’m suggesting they remove).
    The issue we have is when clicking on the hamburger the navigation completely covers the screen on non + size devices.
    In this case it doesn’t actually allow you to scroll the page up/down to see the whole menu – let alone any page content behind it.
    I know there are potentially reasons why (as mentioned above) but is there anything I can try to get around this, so it can scroll or allow that (or similar).
    What would be your suggestion here?
    Many thanks,
    Jason

    #758666

    Hi,

    You can get started with the below css and tweak it to improve the look and feel of the menu. Try adding a dashed border to the bottom of the UL element and see if you like the results or check out https://codepen.io/tag/list-style/ for some inspiration :)

    .widget_nav_menu {
    	padding: 20px 0!important;
    }
    #top .widget.widget_nav_menu li {
        border-bottom: none !important;
        line-height: 14px;
    }
    
    #top .widget.widget_nav_menu li > ul {
        padding: 10px 0 10px 10px;    
    }
    #top .widget.widget_nav_menu li > ul li {
        padding-left: 0;    
    }
    #top .widget.widget_nav_menu li > ul li::before {
      content: "• ";
      font-size:18px;
      left:-7px;
      color: gold; /* or whatever color you prefer */
    }

    Best regards,
    Vinay

    #758653
    haidabear
    Participant

    I’m not sure why this stopped working. Perhaps due to something changing in lightbox that I missed?

    The following code was working, but stopped. The code is on this page:

    — but now when I click on the image, I get the message that says “The image could not be loaded”. This is the image on the page that once clicked on should open a video. If you scroll down on the above page, you will see it on the right hand side.

    Virtual Tour

    #758644
    thorntonp72
    Participant

    HI,

    I have a similar problem as this user in ticket “Filter option below my products on Mobile device by theroyds” where I need to display the filters on the top of the shop pages on mobile devices as I would think this is normal behavior, however I have implemented both the php in the functions.php file and the css code and see no change and they still appear down the very bottom, which seem like an odd place for them to go.

    Am I missing something here?

    Can you help please?

    Thank you

    #758634
    PeterPiepers
    Participant

    Hi, we have installed the latest update and as a result our settings (header, footer, etc.) are gone and the Enfold logo was on top of our site again. After having redefined the settings some old peaces reappeared (e.g. our logo). Other settings however do not seem to come through. They are defined but I cannot be seen online. I am missing something? Leo

    #758621

    Topic: Header and Logo Issues

    in forum Enfold
    NetphoriaInc
    Participant

    He there, I need some help. See the Private content for the links.
    I am trying to build a site using the Enfold theme.
    I am having trouble with the header because you do not offer an option to not display the logo and social links that I can find. See the design and the test site below.

    The only way I can seem to get the menu to align left is to also have the logo and social links displayed to teh right and all I want is the menu to the left.

    I am using a custom widget for the top portion that display a logo and social links and phone number.

    I would also like to be able to have the highlighted menu item have a green border on the bottom like in my design.

    Can you please help me out here?

    • how do I change the menu padding in the theme?
    • how can I get the slide copy and buttons to look like my design? I would like to have the text and buttons centered to the right like the design and then be able to change the colors of the buttons like in my design. The theme does not appear to have this ability??
    • How do I get the & to display in the correct font?
    • I am also trying to figure out how to get a bloody picture as a background using the admin options. I am using a color section but for some reason the green image behind the form is all messed up and does not stay put. I turned off the parallax and i set it to fixed but it is not working!

    Thanks in advance for your help!!

    • This topic was modified 8 years, 11 months ago by NetphoriaInc.

    So glad I found this thread, I was struggling with this issue also– the links Tim provided above from Gravity Forms have great info, but they were missing a key step.

    Here’s a summary of the full fix that worked for me for forms using text confirmations with ajax enabled in the form settings (it won’t solve Tim’s issue since he can’t use ajax, but it works if you are using ajax):

    1. Add the following to your child theme functions file to turn on confirmation anchors for Gravity Forms:
    // add gravity forms confirmation anchor
    add_filter( ‘gform_confirmation_anchor’, ‘__return_true’ );

    2. Set the placement of the anchor by adding a codeblock on the page where you want the confirmation to appear with the code Ismael gave above– I used <a id="gf" class="gform_anchor"></a> because it was not for a specific form, and I put it just above the textblock that contains the Gravity Form shortcode, because I want it to appear where the form was.

    3. If needed, you can adjust spacing above/below the confirmation text in the text editor by inserting code to add 100px whitespace above the confirmation text, and 40px whitespace below it– here’s the code for 100px whitespace, adjust the value of height to increase or decrease it:
    [av_hr class='invisible' height='100' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='yes' custom_icon_color='' icon='ue808' font='entypo-fontello' custom_class='']

    Hope this helps someone else who needs this fix.

    Cheers!`

    #758600

    Hey!

    Please create a new topic, provide us a link of your web page with the image used instead of icon, so we can see how we can help.
    Thanks a lot

    Regards,
    Basilis

    #758580
    timothyquinlan
    Participant

    Hi there, when I have a row split into two cells it will not stack them on IPad mini. I have given them custom CSS classes for each row

    process-1
    process-2

    How do I target them in the custom css to make sure they stack the 2 cells on top of each other?

    Thanks for your help!
    Tim

    #758578

    Now there is a warning at the top of the website

    #758556

    Hey Jeffrey,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    #top .av-caption-style-overlay .av-masonry-item-with-image .av-inner-masonry-content {
        z-index: 1000;
    }
    

    Best regards,
    Yigit

    #758526

    Hey BirJo,

    It appears the page option is not checked in the screen options.

    1. Go to Dashboard > Appearance > Menu
    2. Click on Screen Option on top right
    3. Check pages as seen in the below screenshot.

    Best regards,
    Vinay

    #758513

    Hi condonpb!

    Smaller overlay, can you try explain a bit more?
    DO you want to make the word smaller, do you want to make the hole overlay been positioned at the bottom of the canvas or at the top?
    A bit of an idea of what you want to make, would help us define the issue a bit better.

    Thanks a lot

    Regards,
    Basilis

    Hi Vinay,

    That’s great – thanks for taking a look.

    I do have one question – is it possible to reduce the padding/margin between the top of the page and the subheading and the title?

    Many thanks

    Carole

    #758479
    timahe
    Participant

    Hi,

    I have serveral grid row elements on a customers site built this way:

    View post on imgur.com


    It looks fine on desktop but on mobile there are big spaces between each grid row. Could you please provide me the CSS to minimize them (make it look good again).

    Thanks

    • This topic was modified 8 years, 11 months ago by timahe.
    #758472

    thanks for taking a look.
    I see the social icons in the footer on my mobil,
    but not on desktop. Still don’t have the checkbox.

    There seems to be some kind of social feed corruption, but I have
    disables feed plugins. One is corrupted on the back end, even though I used it fine on my
    dev site (sassy social). Is there a social plugin you recommend – fb and instagram?

    best
    Nancy

    #758471

    Hey Armstrong88,

    Try adding the following to quick css.

    #top .no_margin.av_one_fourth {
    width: 25%;
    padding: 10px !important;
    }

    You can edit the padding to whatever you need.

    Best regards,
    Jordan Shannon

    fmustafa2810
    Participant

    Hi

    I have repeatedly installed the Creative Studio demo and the problem is that the pages of the website have no visual content, only code:
    I do not know if I miss a plug-in or manipulation. Thank you in advance for your help!

    Here is the homepage (only this code, no visual content):

    [et_pb_section admin_label= »section » transparent_background= »off » allow_player_pause= »off » inner_shadow= »off » parallax= »off » parallax_method= »off » custom_padding= »0px|0px|0px|0px » make_fullwidth= »off » use_custom_width= »off » width_unit= »on » custom_width_px= »1080px » custom_width_percent= »80% » make_equal= »off » use_custom_gutter= »off » fullwidth= »on » specialty= »off » disabled= »off »][et_pb_fullwidth_slider admin_label= »Fullwidth Slider » show_arrows= »off » show_pagination= »off » auto= »off » auto_speed= »7000″ auto_ignore_hover= »off » parallax= »on » parallax_method= »off » remove_inner_shadow= »off » background_position= »default » background_size= »default » top_padding= »150px » bottom_padding= »200px » hide_content_on_mobile= »off » hide_cta_on_mobile= »off » show_image_video_mobile= »off » header_line_height= »3em » body_line_height= »1.8em » custom_button= »off » button_letter_spacing= »0″ button_use_icon= »default » button_icon_placement= »right » button_on_hover= »on » button_letter_spacing_hover= »0″ disabled= »off »] [et_pb_slide heading= »Welcome To Our Website » button_link= »# » background_image= »http://soutien-matu.ch/wp-content/uploads/2017/01/VviFtDJakYk-matthew-henry-unsplash.jpg » background_position= »bottom_center » background_size= »contain » background_color= »#ffffff » use_bg_overlay= »on » use_text_overlay= »off » alignment= »center » background_layout= »light » video_bg_width= »1920″ video_bg_height= »638″ allow_player_pause= »off » text_border_radius= »3″ header_font= »|||| » body_font= »|||| » custom_button= »off » button_font= »|||| » button_use_icon= »default » button_icon_placement= »right » button_on_hover= »on » disabled= »off » header_font_select= »default » body_font_select= »default » button_font_select= »default »]

    Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Cras venenatis ac lorema ac tincidunt. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue.

    [/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label= »section » transparent_background= »off » background_color= »#27323a » allow_player_pause= »off » inner_shadow= »off » parallax= »off » parallax_method= »on » make_fullwidth= »off » use_custom_width= »off » width_unit= »off » custom_width_px= »1080px » custom_width_percent= »80% » make_equal= »off » use_custom_gutter= »off » fullwidth= »off » specialty= »off » disabled= »off »][et_pb_row admin_label= »row » make_fullwidth= »off » use_custom_width= »off » width_unit= »off » custom_width_px= »1080px » custom_width_percent= »80% » use_custom_gutter= »off » gutter_width= »3″ allow_player_pause= »off » parallax= »off » parallax_method= »on » make_equal= »off » parallax_1= »off » parallax_method_1= »on » parallax_2= »off » parallax_method_2= »on » parallax_3= »off » parallax_method_3= »on » parallax_4= »off » parallax_method_4= »on » disabled= »off »][et_pb_column type= »4_4″][et_pb_text admin_label= »Text » background_layout= »dark » text_orientation= »center » header_line_height= »2.5em » text_font_size= »16px » use_border_color= »off » border_style= »solid » disabled= »off »]

    #758416
    StormWebDesign
    Participant

    Hi,

    Desktop
    Does anyone know how to make the Partner logo Element display the full width of the screen? Whether I place the element on its own or within a colour section, the Element is contained within the width of the page? I’m using a full width layout?
    http://79.170.44.92/iportalis.com/

    Mobile
    Although my Partner Logo element uses 7 columns, is it possible on mobiles (using @media only screen and (max-width: 767px) to just display one logo, therefore users can use the ‘dot’ icons to scroll through the remaining logos?

    Anyones help would be greatly appreciated.

    Thanks,

    Hi,

    Ok, thanks for the feedback. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

    #758387

    Hi,

    Great, glad you got it working. Please let us know if you should need any further help on the topic.

    Best regards,
    Rikard

Viewing 30 results - 83,101 through 83,130 (of 142,735 total)