-
AuthorPosts
-
January 22, 2018 at 2:03 pm #900806
Hello
For some strange reason the header will not go transparent whatever I tryJanuary 23, 2018 at 7:26 am #901224January 23, 2018 at 11:58 am #901399Sorry about that – please try again http://ninjaadventure.co.uk/
January 23, 2018 at 1:27 pm #901438Hi,
Try going to “Header visibility and transparency” in the sidebar when editing your page, and choosing “Transparent Header”
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.- Install and activate ” Temporary Login Without Password “.
- Go to ” Users > Temporary Logins ” on the left-side menu.
- Click ” Create New “.
- 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 ). - Click ” Submit “.
- 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,
MikeJanuary 23, 2018 at 2:17 pm #901460I have noticed there are only a small selection of Google Fonts also – how can more be added?
January 23, 2018 at 2:59 pm #901477Hi,
Please see: Register Additional Google Fonts for Theme OptionsBest regards,
MikeJanuary 23, 2018 at 3:53 pm #901499Totally 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;
}January 23, 2018 at 4:10 pm #901522I just need the font Bungee to work on the site – how is this achieved?
January 23, 2018 at 4:42 pm #901546Hi,
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,
NikkoJanuary 23, 2018 at 5:47 pm #901577This does not work!
Added you as an admin to see what I mean
January 24, 2018 at 12:13 pm #902082Hi,
I logged in and put the code near the top of the functions.php underif(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.
Best regards,
MikeJanuary 24, 2018 at 3:23 pm #902171It is still not showing on the home page in the slider
January 24, 2018 at 5:12 pm #902228Sorted – 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?
January 24, 2018 at 8:30 pm #902295Hi,
Can you post a mockup/screenshot of what you want to achieve?
Best regards,
NikkoJanuary 26, 2018 at 11:37 am #903298Yes 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
January 26, 2018 at 11:44 am #903304Also the form button is all white – how can this be changed without changing anything else
January 26, 2018 at 12:10 pm #903334Hi,
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,
MikeJanuary 29, 2018 at 11:53 am #904195Just 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???
January 30, 2018 at 2:37 am #904575Hi,
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,
MikeJanuary 30, 2018 at 10:11 am #904685I 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
January 31, 2018 at 6:07 am #905366Hi,
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,
IsmaelJanuary 31, 2018 at 11:54 am #905523But now we have lost the jagged edge at the bottom of the PNG in the layerslider!!!
February 2, 2018 at 2:30 am #906566Hi,
You can adjust the top margin value. The css modification was added in the General Styling > Quick CSS field.
Best regards,
IsmaelFebruary 2, 2018 at 11:39 am #906794Yes. 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
February 5, 2018 at 4:30 am #907664Hi,
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,
IsmaelFebruary 5, 2018 at 12:05 pm #907883Sorry – 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
February 5, 2018 at 2:31 pm #908001Hi 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,
VictoriaFebruary 5, 2018 at 4:35 pm #908079THANK YOU EVERYONE!!!
But especially Victoria!
February 5, 2018 at 7:18 pm #908151 -
AuthorPosts
- The topic ‘Start Up Demo’ is closed to new replies.