Last night, I decided to add the HTML piece link to my computer listing page. However, the pattern of any link linking, or whatever browser I use, the piece links are not just navigated.
Update on the Answer: After my mistake with tag attributes, links are now flowing correctly instead of pieces.
I could not find any real answer, but I have read what I have read to suggest that my use of CSS positioning to create two column layout with two DIVs The browser can find the vertical position of the piece link.
#contentcol {margin-right: 130px; Padding: 3px; } #WrightScroll {background color: #fff; float right; Padding: 0 pixels; Width: 126px; }
If this is the case, what would be the proper approach to allowing HTML piece links?
To navigate to those URLs you want, you need anchor instead of linked anchors. That's what's in your page. Example:
& lt; A name = "SEPHIROTH" /> Instead
(without hashmark):
& lt; A href = "# SEPHIROTH" & gt; # 1 & lt; / A & gt;
Favorites, instead of using the name anchor, you can also give the element that you want to navigate to the id
attribute.
& lt; Td id = "SEPHIROTH" & gt; ... & lt; / Td>
Another example. Try this link: You can see, due to the id
attribute, scrolls down on your footer
Comments
Post a Comment