Viewing 29 posts - 1 through 29 (of 29 total)
  • Author
    Posts
  • #900806

    Hello
    For some strange reason the header will not go transparent whatever I try

    #901224

    Hey whdsolutions,

    Where can we see the problem?

    Best regards,
    Rikard

    #901399

    Sorry about that – please try again http://ninjaadventure.co.uk/

    #901438

    Hi,
    Try going to “Header visibility and transparency” in the sidebar when editing your page, and choosing “Transparent Header”
    2018-01-22_225451
    If this doesn’t help, Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    1. Install and activate ” Temporary Login Without Password “.
    2. Go to ” Users > Temporary Logins ” on the left-side menu.
    3. Click ” Create New “.
    4. Add the email address for the account ( you can use (Email address hidden if logged out) ), as well as the ” Role ” making that the highest possible and the expiry about four days
      ( do be sure that we have enough time to debug ).
    5. Click ” Submit “.
    6. You’ll now have a temporary account. Please provide us here in the private section the URL, so we can login and help you out.

    When your issue is fixed, you can always remove the plugin!
    If you prefer to not use the plugin, you can manually create a admin user and post the login credentials in the “private data” field.

    Best regards,
    Mike

    #901460

    I have noticed there are only a small selection of Google Fonts also – how can more be added?

    #901477

    Hi,
    Please see: Register Additional Google Fonts for Theme Options

    Best regards,
    Mike

    #901499

    Totally not worked :-(

    /*
    * register custom functions that are not related to the framework but necessary for the theme to run
    */

    require_once( ‘functions-enfold.php’);

    /*
    * add option to edit elements via css class
    */
    // add_theme_support(‘avia_template_builder_custom_css’);
    //
    // if(isset($avia_config[‘use_child_theme_functions_only’])) return;
    add_filter( ‘avf_google_heading_font’, ‘avia_add_heading_font’);
    function avia_add_heading_font($fonts)
    {
    $fonts[‘Bungee’] = ‘Bungee:400,700’;
    return $fonts;
    }

    add_filter( ‘avf_google_content_font’, ‘avia_add_content_font’);
    function avia_add_content_font($fonts)
    {

    $fonts[‘Bungee’] = ‘Bungee:400,700’;
    return $fonts;
    }

    #901522

    I just need the font Bungee to work on the site – how is this achieved?

    #901546

    Hi,

    Just add this code in functions.php:

    add_filter( 'avf_google_heading_font', 'avia_add_heading_font');
    function avia_add_heading_font($fonts)
    {
      $fonts['Bungee'] = 'Bungee:400,700';
      return $fonts;
    }
    
    add_filter( 'avf_google_content_font', 'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
    	$fonts['Bungee'] = 'Bungee:400,700';
    	return $fonts;
    }

    just place the code below this code:

    if(isset($avia_config['use_child_theme_functions_only'])) return;

    Then go to WP Dashboard > Enfold > General Styling > Fonts (tab) > and check Heading Font and Defines the Font for your body text, you should see in the dropdown (at the bottom of the list) the Bungee font.

    Best regards,
    Nikko

    #901577

    This does not work!

    Added you as an admin to see what I mean

    #902082

    Hi,
    I logged in and put the code near the top of the functions.php under

    if(isset($avia_config['use_child_theme_functions_only'])) return;

    that was already there, and removed the second copy of that code. It is now working, please check.
    When looking for the font in the drop down list, it may be at the bottom of the list.
    2018-01-24_051119

    Best regards,
    Mike

    #902171

    It is still not showing on the home page in the slider

    #902228

    Sorted – I used a Layer Slider instead –

    Just one more thing, how can we get the first color block to sit underneath the jagged edge of the layerslider so it overlaps?

    #902295

    Hi,

    Can you post a mockup/screenshot of what you want to achieve?

    Best regards,
    Nikko

    #903298

    Yes we want the layer slider png to overlap the content like shown in this image http://ninjaadventure.co.uk/wp-content/uploads/2018/01/test.jpg

    #903304

    Also the form button is all white – how can this be changed without changing anything else

    #903334

    Hi,
    The color of the text in the submit button is transparent, this will change it to black, with a red background-color for the button:

    #top.page-id-549 .avia-builder-el-8 input[type='submit'] {
    color: #000 !important;
    background-color: red !important; 
    }

    adjust to suit.

    Best regards,
    Mike

    #904195

    Just one more thing, how can we get the first color block to sit underneath the jagged edge of the layerslider so it overlaps?

    Any news on this???

    #904575

    Hi,
    I’m not sure what you would like to see, It seems to be that way now. Please see screenshot in Private Content area.
    Can you add a mockup of what you would like to see?

    Best regards,
    Mike

    #904685

    I already sent a mock-up in an earlier post but here it is again http://ninjaadventure.co.uk/wp-content/uploads/2018/01/test.jpg

    #905366

    Hi,

    Did you change the image? We applied a Section ID (“overlay-section”) to the color section underneath the layer slider and adjusted the horizontal position with the following css code.

    #overlay-section {
        margin-top: -50px;
        z-index: 100;
        position: relative;
    }

    Best regards,
    Ismael

    #905523

    But now we have lost the jagged edge at the bottom of the PNG in the layerslider!!!

    #906566

    Hi,

    You can adjust the top margin value. The css modification was added in the General Styling > Quick CSS field.

    Best regards,
    Ismael

    #906794

    Yes. but this needs to have the rough edge overlapping the image below –

    See the visual

    http://ninjaadventure.co.uk/wp-content/uploads/2018/01/test.jpg

    #907664

    Hi,

    Please try to add this css codes.

    .main_color {
        background: none;
    }
    
    #overlay-section {
        margin-top: -50px;
        z-index: 50;
        position: relative;
        background-color: transparent !important;
    }
    
    #layer_slider_1, #layer_slider_1 * {
        background-color: transparent !important;
    }

    Best regards,
    Ismael

    #907883

    Sorry – that is not right either, the background is now black

    I don’t think you understand what I mean. Please see the visual again.

    http://ninjaadventure.co.uk/wp-content/uploads/2018/01/test.jpg

    #908001

    Hi whdsolutions,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css, please adjust the code Ismael gave you to this

    
    #overlay-section {
        margin-top: -40px;
        z-index: 0;
        position: relative;
        background-color: transparent !important;
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #908079

    THANK YOU EVERYONE!!!

    But especially Victoria!

    #908151

    Hi,
    Glad Victoria could help, we will close this now. Thanks for using Enfold.

    Best regards,
    Mike

Viewing 29 posts - 1 through 29 (of 29 total)
  • The topic ‘Start Up Demo’ is closed to new replies.