OK, it wasn't what I was guessing. I was able to navigate to the page from the URL displayed in the address bar in the images. The problem is that settings in the custom.css file add (for ul li) that bullet (it's really a background image) and add 25px left padding. There's nothing in the the ajaxtabs.css file to override that, so these styles which may be appropriate somewhere else on the site, now or in the future, are getting put on the li elements used in this script.
To fix that, in the ajaxtabs.css file, add the following (highlighted):
Code:
/* ######### CSS for Shade Tabs. Remove if not using ######### */
.shadetabs{
padding: 3px 0;
margin-left: 0;
margin-top: 1px;
margin-bottom: 0;
font: bold 12px Verdana;
list-style-type: none;
text-align: left; /*set to left, center, or right to align the menu as desired*/
}
.shadetabs li{
display: inline;
margin: 0;
padding: 0!important;
background-image: none!important;
}
.shadetabs li a{
text-decoration: none;
position: relative;
z-index: 1;
padding: 3px 7px;
margin-rig . . .
Bookmarks