Everyone;
I am running into an issue while trying to add a "hot" question mark in my css based menu buttons. When I add the link for the character "?" to the right of the existing content it results in another button being generated upon display.
-Results Facsimile-
----------------
| How it Works |
----------------
| Testimonials |
----------------
| ? |
----------------
Here are some snippets of code to peruse:
-HTML Snippet-
<!-- Setup Left Side Button Menu -->
<ul class="nav">
<li><a href="$PHP_SELF?s=4">How it Works</a></li>
<li><a href="$PHP_SELF?s=5">Testimonials</a>
<span class="helpBox">
<a href="helpBox.php?hid="1">?/a>
</span></li>
</ul>
-CSS Snippet-
/* Navigation Control(s) for Left Menu */
.nav {
display: block;
margin: 0px auto;
padding: 8px;
list-style-type: none;
}
/* Help Pop-up Box */
.helpBox a,
.helpBox a:active,
.helpBox a:visited {
background-color: #ff0000;
font-size: 1.3em;
font-weight: bold;
padding: 1px 2px;
margin-left: 5px;
color: #fff;
text-decoration: none;
}
As you can see, the added <a> results in a separate button box. I simply desire it to be to the right of the original content of "Testimonials" but have a separate link for the word "Testimonial" and the character "?".
Any ideas?
Thanks all - Bob
I am running into an issue while trying to add a "hot" question mark in my css based menu buttons. When I add the link for the character "?" to the right of the existing content it results in another button being generated upon display.
-Results Facsimile-
----------------
| How it Works |
----------------
| Testimonials |
----------------
| ? |
----------------
Here are some snippets of code to peruse:
-HTML Snippet-
<!-- Setup Left Side Button Menu -->
<ul class="nav">
<li><a href="$PHP_SELF?s=4">How it Works</a></li>
<li><a href="$PHP_SELF?s=5">Testimonials</a>
<span class="helpBox">
<a href="helpBox.php?hid="1">?/a>
</span></li>
</ul>
-CSS Snippet-
/* Navigation Control(s) for Left Menu */
.nav {
display: block;
margin: 0px auto;
padding: 8px;
list-style-type: none;
}
/* Help Pop-up Box */
.helpBox a,
.helpBox a:active,
.helpBox a:visited {
background-color: #ff0000;
font-size: 1.3em;
font-weight: bold;
padding: 1px 2px;
margin-left: 5px;
color: #fff;
text-decoration: none;
}
As you can see, the added <a> results in a separate button box. I simply desire it to be to the right of the original content of "Testimonials" but have a separate link for the word "Testimonial" and the character "?".
Any ideas?
Thanks all - Bob