Hey everyone, I'm having an issue with an SVG logo that I exported from Adobe Illustrator. The logo displays properly when opened in a web browser, but appears too tiny to see clearly when used in a custom pull-out side navbar on my website. I currently have a Font Awesome icon as a placeholder, but now that the logo is ready, I need help replacing it. The list item with the class 'logo' contains the placeholder that needs to be swapped with the actual logo. Here's how the Navbar looks in index.html:
<nav class="custom-navbar">
<ul class="custom-navbar-nav">
<li class="logo">
<a class="custom-nav-link">
<span class="link-text">Kortney Stinson</span>
<svg aria-hidden="true" focusable="false" data-prefix="fab" data-icon="kickstarter-k"
class="svg-inline--fa fa-kickstarter-k fa-w-12" role="img" xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 384 512">
// Placeholder goes here
</a>
</li>
// Other menu items go here
This is the CSS being applied to the Navbar:
.custom-navbar {
width: 5rem;
height: 100vh;
position: fixed;
background-color: var(--bg-primary);
transition: width 200ms ease;
z-index: 1;
}
// More CSS styles...
Finally, here is the SVG logo code that I am trying to use:
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
x="0px" y="0px" width="1080px" height="1080px" viewBox="0 0 1080 1080"
style="enable-background:new 0 0 1080 1080;" xml:space="preserve">
<style type="text/css">
.st0 {
fill: #F9BC60;
}
</style>
// SVG Logo path and shapes
</svg>