Coding-Spot

You are not connected. Please login or register

 
 
 

how to remove line/box on widget/navigation?

Message (Page 1 of 1)

#1

weeknight

weeknight
 
Senior Member

Posted May 30th 2013, 5:00 pm

 
Hello all i want to ask :)

how to remove this line/box on my widget/navigation?
how to remove line/box on widget/navigation? 26q6i3K
http://budokai.indonesianforum.net/

that box/line very useless in my widget,
please help me to fix it :D

thanks before ^_^

my code for navigation
Code:
<tr><td class="row1" align="left">

<style type="text/css">

.arrowgreen{
  width: 100%; /*width of menu*/
  border-style: solid solid solid solid;
  border-color: #141414;
  border-size: 1px;
  border-width: 1px;
}

.arrowgreen ul{
  list-style-type: none;
  margin: 0;
  padding: 0;
}
 
.arrowgreen li a{
  font: bold 12px Verdana, Arial, Helvetica, sans-serif;
  display: block;
  background: transparent url(http://i46.servimg.com/u/f46/12/16/55/86/menu310.png) 100% 0;
  height: 24px; /*Set to height of bg image- padding within link (ie: 32px - 4px - 4px)*/
  padding: 4px 0 4px 10px;
  line-height: 24px; /*Set line-height of bg image- padding within link (ie: 32px - 4px - 4px)*/
  text-decoration: none !important;

 
.arrowgreen li a:link, .arrowgreen li a:visited {
  color: #7175b0;
text-decoration:none !important;
}

.arrowgreen li a:hover{
  color: #7175b0;
  background-position: 100% -32px;
text-decoration:none !important;
}

 
.arrowgreen li a.selected{
  color: #fafafa;
  background-position: 100% -64px;
}

</style>
<script type="text/javascript">

function popup(url)
{
 var width  = 500;
 var height = 600;
 var left  = (screen.width  - width)/2;
 var top    = (screen.height - height)/2;
 var params = 'width='+width+', height='+height;
 params += ', top='+top+', left='+left;
 params += ', directories=no';
 params += ', location=no';
 params += ', menubar=no';
 params += ', resizable=no';
 params += ', scrollbars=no';
 params += ', status=no';
 params += ', toolbar=no';
 newwin=window.open(url,'windowname5', params);
 if (window.focus) {newwin.focus()}
 return false;
}
</script><div class="arrowgreen">
  <ul>
                <li><a href="#" title="A">A</a></li>
      <li><a href="#" title="B">B</a></li>
<li><a href="#" title="C">C
</a></li>
<li><a href="#" title="D">D
</a></li>
<li><a href="#" title="E
">E
</a></li>
 <li><a href="#" title=" F
"> F
</a></li>   

     

  </ul>
</div>
</td></tr>





#2

Mark

Mark
 
Administrator
Administrator

Posted May 30th 2013, 5:19 pm

 
It is an image you're using, this one:
- https://i.imgur.com/eTrETT6.png



https://coding-spot.darkbb.com


#3

weeknight

weeknight
 
Senior Member

Posted May 30th 2013, 5:45 pm

 
no mr.mark,
if im look with inspect element is
Code:
<td align="left" class="row1"></td>

but i cant remove, if im remove my border in homepage get lost :(

i need hel you for fix this problem, :)

thanks before ^_^





#4

Mark

Mark
 
Administrator
Administrator

Posted May 30th 2013, 5:48 pm

 
I don't know if i get you right but the arrow is pointing to the image border, so here, give this a try:
Code:
#right .forumline .row1 {
border: none !important;
}

Laugh



https://coding-spot.darkbb.com


#5

weeknight

weeknight
 
Senior Member

Posted May 30th 2013, 6:16 pm

 
yes, my border for navigation fix now :)

but my border for widget top posting get lost :(
how to remove line/box on widget/navigation? FXjQMfU

how to fix it mr.mark?

thanks before ^_^





#6

Mark

Mark
 
Administrator
Administrator

Posted May 30th 2013, 6:19 pm

 
You can't do something about it, sorry, but if you want to remove also the border, add this to your CSS:
Code:
#right .forumline .row1, #right .forumline .row2 {
border: none !important;
}



https://coding-spot.darkbb.com


#7

weeknight

weeknight
 
Senior Member

Posted May 30th 2013, 6:30 pm

 
ugly my forum, if I try to code it. because the border so missing one. :(

whether I should try your navigation is this?
how to remove line/box on widget/navigation? IojWpmc

i look on your forum tumblr ^_^





#8

Mark

Mark
 
Administrator
Administrator

Posted May 30th 2013, 6:35 pm

 
Here: Laugh
Code:
<div id="navigation">
    <ul class="top-level">
        <li><a href="http://coding-spot.darkbb.com/">Guidebook</a></li>
        <li><a href="http://coding-spot.darkbb.com/">Rulebook</a></li>
        <li><a href="http://coding-spot.darkbb.com/">Warbook</a></li>
        <li><a href="http://coding-spot.darkbb.com/">Free Duelist</a></li>
        <li><a href="http://coding-spot.darkbb.com/">Recruitment</a></li>
    </ul>
</div>

<style>#navigation {font-size:0.75em; width:100%; font-weight:bold;}
#navigation ul {margin:0px; padding:0px;}
#navigation li {list-style: none;}

ul.top-level {background:#141414;}
ul.top-level li {
 border-bottom: #0d0d0d solid;
 border-top: #0d0d0d solid;
 border-width: 1px;
}

#navigation a {
 color: #2cab58;
 cursor: pointer;
 display:block;
 height:30px;
 line-height: 30px;
 text-indent: 10px;
 text-decoration:none;
 width:100%;
}
#navigation a:hover{
 text-decoration:underline;
 
}

#navigation li:hover {
 background: #00341d;
 position: relative;

}
</style>



https://coding-spot.darkbb.com


#9

weeknight

weeknight
 
Senior Member

Posted May 30th 2013, 6:50 pm

 
wew, :D
this work mr.mark ^^

not bug on my forum xD
how to remove line/box on widget/navigation? ZAtLpiC

thanks mr.mark ^_^

problem solved xD





#10

tommycoo

tommycoo
 
CS Staff
CS Staff

Posted May 30th 2013, 9:13 pm

 
Since the problem solved
~Topic solved and archives



http://atlanta.forumid.net/


#11

Sponsored content


 

Posted

 





Message (Page 1 of 1)

Permissions in this forum:
You cannot reply to topics in this forum

In total there is 0 user online :: 0 Registered, 0 Hidden and 0 Guests

Users browsing this forum: None