How to remove border from top and bottom
-
I have already tried these combinations in css to remove border with no success. I can make it thick and thin, which means I am at the right place.
`.rotatingtweet {
border-top: none;
border-bottom: none;
margin-bottom: none;
}
.rotatingtweet {
border-top: 0px solid #DDD;
border-bottom: 0px solid #DDD;
margin-bottom: 3%;
}
.rotatingtweet {
border-top: 0px;
border-bottom: 0px;
margin-bottom: 3%;
}’Can you tell me what to put here (or there is anything else I can do) to get rid of the border.
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘How to remove border from top and bottom’ is closed to new replies.