Viewing 20 posts - 1 through 20 (of 20 total)
  • Author
    Posts
  • #187494

    Hi there

    I am using the excellent Enfold theme on a website I am developing for a friend: http://www.alicemackintosh.com/

    I have a couple of questions:

    1.) On http://kriesi.at/themes/enfold/homepage/home-v4-small-slider/ you have a grey/black transparent background effect on the slider wording. Can you send me the CSS for this pls? I take I can put it in the Quick CSS box in Enfold Styling.

    2.) What is the CSS to change the colours of the footer? Both where the widgets go and the copyright part.

    Many thanks
    Nick

    #187496

    Hey Nick!

    For the captions, add this CSS:

    .ls-layer span { 
    background: rgba(0, 0, 0, 0.5);
    padding: 20px !important;
    display: block;
    }

    Regarding the footer, by colours you mean the font colours or the background colour?

    Cheers,
    Josue

    #187523

    Hey Josue, thanks for the quick response.

    I have added this code and it works well, but how do I get padding on the right hand side, as currently the wording goes right to the edge of the image.

    And I mean the actual background colours in the footer, currently grey.

    Thanks

    Nick

    #187540

    Hi Nick!

    The right padding is there, you just need to push the span to the left (try using a % value instead of a px one) in LayerSlider.

    For the footer, use this:

    #footer .flex_column{
        background: red !important;
        padding: 0 20px; /* You may want to add some padding too */
    }

    Or if you want to have a different background color for each one:

    #footer .flex_column:nth-child(1){
        background: green !important;
    }
    #footer .flex_column:nth-child(2){
        background: yellow !important;
    }
    #footer .flex_column:nth-child(3){
        background: blue !important;
    }
    #footer .flex_column:nth-child(4){
        background: peru !important;
    }

    Cheers!
    Josue

    #188036

    Thanks for this code Josue, I will try it out soon and let you know how I get on.

    Another question, how do you get the slider to not show the wording (span) on a mobile (smaller) device? It just looks a tad silly on an iphone for example as the writing is so small. In this instance it would be good to just show the slider image.

    Thanks

    Nick

    #188040

    Hey Nick!

    This code will do it:

    @media only screen and (max-width: 767px) {
    .ls-layer span { 
    display: none !important;
    }
    }

    Cheers!
    Josue

    #188113

    Thanks again for such a quick response, excellent service I must say. Just added thois code and works a treat. So bascially anything with a browser size that is below 767px will not show the wording on the slider? What is an Ipad or other standard tablet out of interest?

    I have one further question, when you play around with the responsiveness of the theme, if you reduce the browser window to a certain size the navigation totally goes: see Screengrab of bug

    Is this just an issue with the a desktop browser so effectively would never be an issue in the real world?

    #188219

    Hi!

    Please edit js > avia.js, find this code on line 90:

    switchWidth 	  = 767;
    
        	if(first_level_items > 7 + header.find('#menu-item-search').length && !bottom_menu)
        	{
        		switchWidth = 989;
        		header.addClass('mobile_menu_tablet');
        	}

    Replace it with:

    switchWidth 	  = 1006;
    
        	if(first_level_items > 7 + header.find('#menu-item-search').length && !bottom_menu)
        	{
        		switchWidth = 1006;
        		header.addClass('mobile_menu_tablet');
        	}

    Remove browser cache then reload the page a few times.

    Regards,
    Ismael

    #191169

    Hey there, thanks for the response. I have replaced the above with what you suggested, however it has not fixed the problem.

    Any other ideas?

    Thanks

    Nick

    #191232

    Hey Nick!

    That behavior is unexpected, it doesn’t happen neither in the demo nor in my local installation, try the following:

    1. Disable all third-party plugins (some js may be conflicting).
    2. Re-install the theme (backup any theme modification you’ve made first).

    Best regards,
    Josue

    #192280

    Hey Josue, I will get back to you on the above soon, but going back to footer colours: the code you have given me changes the actual column colours. I’m looking to achieve this: http://www.alicemackintosh.com/wp-content/uploads/2013/11/alice-footer-colours-new.jpg

    Any ideas?

    #192405

    Hey!

    You can change those colors in Enfold > Styling:

    Best regards,
    Josue

    #192665

    Ok that’s great, somehow missed that bit, but its great to have so much control from the backend.

    Regarding “when you play around with the responsiveness of the theme, if you reduce the browser window to a certain size the navigation totally goes: see”

    When I set Responsive Header Main Menu to “Display as slide out menu” the issue s fixed – see my website now. I.e it always shows the navigation. This is what the Enfold demo uses. But when its selected to “Display as Dropdown menu” it then gets lost at a certain browser size.

    Have disabled plugins but this does not fix it.
    Thanks
    Nick

    #192717

    Hi,

    Can you create an administrator account and post it here as a private reply?

    Regards,
    Josue

    #200079
    This reply has been marked as private.
    #200245

    Hi!

    Please go to Users > Add New in WordPress dashboard and set the role as administrator and post username and password here privately

    Cheers!
    Yigit

    #200785
    This reply has been marked as private.
    #201833

    Hey!

    Fixed: http://www.alicemackintosh.com/

    I added this code to the Quick CSS:

    .responsive .mobile_menu_tablet .main_menu {
        display: block !important;
    }

    Cheers! 
    Josue

    #202916

    Thanks for all your help. Hopefully I have also helped you improve the theme as well.

    Great support I must say :)

    #202940

    You are welcome, glad we could help.

    Happy Holidays :)

    Regards,
    Josue

Viewing 20 posts - 1 through 20 (of 20 total)
  • The topic ‘Slider text transparency’ is closed to new replies.