Removing dots from a navbar [closed] - html

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 6 years ago.
Improve this question
I found this wonderful navbar online but I don't find the line in the code to remove the dots.
The current Looking: https://gyazo.com/0531847d45ebfc31d7a15b09b5404c9f
JSFiddle: https://jsfiddle.net/ujzge3sg/
#import url(http://fonts.googleapis.com/css?family=Open+Sans:700);
nav {
display: block;
width: 100%;
}
.navbar {
background: #f96e5b;
width: 100%;
}
.navbar-fixed-top {}
.navbar ul {
margin: 0;
padding: 0;
line-height: 1;
display: block;
zoom: 1;
}

Here's a tutorial of list-style-type, or in your words, those are the black dots.
Just do list-style-type: none; on the li list. It would help if you would learn HTML and CSS before asking a question about it.
Update
After seeing the full HTML and CSS, I saw the 'problem'. There was an after adding squares after every li. To remove the squares, just delete from line 68-78 in the JSFiddle.
Here's an updated version: https://jsfiddle.net/d7Lrartp/

Related

Ul tag not taking full width on bootstrap card [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 3 years ago.
Improve this question
I have used Bootstrap on my WordPress site, I used the bootstrap grid to divide the contents of the page into two, one of them is having a card which acts like a nav menu.
The problem is the <ul> element is not taking full width.
In the left side of the site, there are two items named "introduction", which is not taking full width.
I tried
display:inline;
display: flex;
flex-wrap: wrap;
padding: 0px;
none of them work.
Your website has margin: 0 0 1.5em 3em; applied to all ul and ol elements. You might want to figure out where that's coming from and remove it. Or you could just override it by adding this to your stylesheet:
ul, ol {
margin: 0
}
In card > .list-group give
margin: 0;

White bar in CSS showing but not defined [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 4 years ago.
Improve this question
I am having some trouble trying to figure out what's happening with my page. As you can see below on the mobile version, it appears right next to the top part of the logo.
My current code for nav (the element in blue) is:
nav {
top: 0;
left: 0;
text-align: center;
font-style: italic;
font-weight: 700;
font-size: 25px;
}
Since it maybe hard to tell just by the picture, you can find the code to this page in https://jsfiddle.net/bg5srnj8/1/
nav > img {
vertical-align: middle;
margin: 0px 25px 10px 25px;
}
you had a 10px margin top in the image.
I hope it works.

Icon Image Keeps Repeating in Background [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 5 years ago.
Improve this question
CSS
This icon image in on my recently installed forums style keeps repeating, creating an obnoxious background that is too noisy and distracts from the actual words.
Here is a copy of that particular element's CSS:
element {
}
ul.topiclist li.row dl {
padding: 2px 0;
}
ul.topiclist dl {
font-size: 10px;
}
ul.topiclist dl {
position: relative;
}
.clearfix, fieldset dl, ul.topiclist dl, dl.polls {
overflow: hidden;
}
dl.icon {
background-position: 95% 15%;
position: relative;
}
.topic_read_mine {
background-image: url("./images/icons/topic_read_mine.png");
}
I was able to retrieve this from the browser inspection tool # http://www.gaymerscommunity.com/viewforum.php?f=4
I would like for the icon to display only once. It is meant to be an indicator if the forum was read/unread.
Answered Below
added 'background-repeat: no-repeat' to the ul.topiclist dl
Also found 'dl.icon' and adjusted the background-position to display on the right.
Thank you.
Css Code to fix that.
ul.topiclist dl {
background-repeat: no-repeat;
}
background-repeat: no-repeat;
There is no PHP in here

Links are unclickable [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 7 years ago.
Improve this question
Hi,
I have managed a blog(wordpress) for a company and pasted their header footer code to make the site look uniform. But the social icons in header are not clickable whereas they are clickable in rest of the website. Link to the blog is: Blog
Thank you.
Try this -
.social > li > a
{
padding:5px 3px;
}
.top-bar a
{
background:#0091EA none repeat scroll 0 0;
z-index:9999;
position:relative;
}
This is the solution:
.top-bar {
background: #0091ea none repeat scroll 0 0;
clear: both;
color: #ffffff;
float: left;
font-size: 12px;
padding: 5px 0;
width: 100%;
z-index: 99;
position: relative;
}

How do I center my navigation bar on my webpage? [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 8 years ago.
Improve this question
I cant manage to center my navigation bar. I am really new to web design and any help would be much appreciated. Here is the navigation bar.
Change the rules for ul to:
ul#menu {
list-style-type: none;
margin: 0 auto;
padding: 0px;
position: relative;
width: 705px;
}
ul {
list-style-type:none;
margin:0;
padding:0;
position: absolute;
left:25%;
right:25%;
}
Or you can set your left right as per your choice .