Ok, to get the header elements working, you will need to paste the URL to the images in the theme header rather than the theme options.
I can’t tell you why exactly, but that fixes it.
Also, if you paste the URL’s in the header file, make sure to use get_stylesheet_dir_uri()
Like the example I showed earlier, you could do this:
<a class="navbar-brand normal" href="<?php echo site_url(); ?>/#ip-container"><img class="style-svg" src="<?php echo get_stylesheet_directory_uri(); ?>/themesvg/Atomic-Letters.svg" /></a>
This code assumes that you create a directory in your theme called themesvg
and you upload the svg files to that directory to be used in this reference.
There is a few ways you could do this. The simplest is to just paste the direct URL from your media library in the header, but it’s not best practice.
I hope you get it sorted.
-
This reply was modified 7 years, 11 months ago by
Benbodhi. Reason: fixed code
-
This reply was modified 7 years, 11 months ago by
Benbodhi. Reason: fixed code