1. Check the code snippet that you had inserted in your <head> section.
2. In that section you can find something like the following:
Code:
#dragbar #closetext{
font-weight: bold;
margin-right: 1px;
}
3. Now you need to remove #closetext from the above position and the removal will make the above section something like the following:
Code:
#dragbar{
font-weight: bold;
margin-right: 1px;
}
4. Now you need to specify another CSS rule for the closetext id which can be inserted at the bottom of your <style> section. It looks like the following:
Code:
#closetext{
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:10px;
color:#666666;
font-weight: bold;
margin-right: 1px;
}
5. The CSS rule that I mentioned in step 4 is an example one but it will give you an idea about the modification you are going to perform.
6. I hope you have some basic knowledge of CSS which is the only necessary thing that you need to achieve what you want in this case.
Bookmarks