HTML/CSS Help.

Status
This thread has been locked.

chocolatecooke

Supreme
Feedback score
18
Posts
197
Reactions
108
Resources
0
Hello,
I've been redesigning my site, based on bootstrap (Currently is, just wanted a new design for when I announce the latest features etc)

https://gyazo.com/76ef24727d9b7eba55b2c431b7f3ce96
(I have changed the background color to black and given it z-index 1 so it floats above the logo.)

The cause for this is:
https://gyazo.com/eda7e737217bc31adc4b60e4e58eabee
For having the logo float down a little.
Which was done by: https://gyazo.com/e9f30576731ebedaceef7262c0a4e3ac

That black dot is the collapse symbol and I only seem to have it since I have added an image as the logo and can't seem to find the fix online.

HTML: https://gyazo.com/0b76f5977846aae3c396026854b651dd

It's suppose to look like: (On the current design, just an example) https://gyazo.com/1351662c65d4b094e5d07c626a6966db

I've spent countless hours on this and can't seem to figure out why.
 
PebbleHost
High performance, consistent uptime and fast support. Minecraft hosting that just works.

Glitch

Website Developer
Supreme
Feedback score
32
Posts
426
Reactions
114
Resources
0
use navbar-brand for the logo
 

Glitch

Website Developer
Supreme
Feedback score
32
Posts
426
Reactions
114
Resources
0
Yeah thats right.

If you want the navbar not to be fat. Make a wrapper for the logo

HTML:
<div class="logo-wrapper">
        <!--- Logo code here --->
</div>

Code:
.logo-wrapper {
      position: absolute;
      top: 0;
      left: 0;
}

.logo {
      position: relative;
      top: 10px;
}

Although, you might need to make media queries to make it responsive
 

chocolatecooke

Supreme
Feedback score
18
Posts
197
Reactions
108
Resources
0
I'd recommend purchasing this it will save you a lot of time.

https://bootstrapstudio.io
More than happy doing it the old fashioned way although I appreciate the thought.[DOUBLEPOST=1517145234][/DOUBLEPOST]
Yeah thats right.

If you want the navbar not to be fat. Make a wrapper for the logo

HTML:
<div class="logo-wrapper">
        <!--- Logo code here --->
</div>

Code:
.logo-wrapper {
      position: absolute;
      top: 0;
      left: 0;
}

.logo {
      position: relative;
      top: 10px;
}

Although, you might need to make media queries to make it responsive
Done exactly that, yet still gets https://gyazo.com/81725d09e4984aa32d3ba4fce64fd5d5 - it's int he wrong place?
 
Last edited:
Status
This thread has been locked.
Top