Forum Moderators: not2easy
I'm new to css and to posting so please forgive any mistakes I might make in explaining this. I am working on my first css site and am using a left 'sidebar' which includes internal links and a title header (see below). The title is not supposed to be linked to anything and it's not for all of my pages (10+) but it is on the index page. I have tried swapping out the code from the pages where it's not linked, saving the page as something else, resaving - nothing works. Is there somewhere that links like this can hide? Also - when viewing the index page in Dreamweaver design view it doesn't show it's linked - just when it's uploaded does the link appear...
Hope this makes sense! Thanks in advance for your help.
/* Sidebar */
#sidebar {
float: left;
width: 285px;
border: 1px solid #E6E6E6;
}
#sidebar ul {
margin-left: 0;
padding-left: 0;
list-style: none;
}
#sidebar ul li {
padding-left: 5px;
}
/* Boxed */
.boxed {
}
.boxed .title {
height: 29px;
margin: 0;
padding: 12px 0 0 20px;
background: #656464 url(images/img06.gif) repeat-x;
text-transform: uppercase;
font-size: 122%;
font-weight: bold;
color: #FFFFFF;
}
This may be too much, but here's what I have for the sidebar:
<div id="sidebar">
<div id="search" class="boxed">
</div>
<div id="extra" class="boxed">
<h2 class="title">ten reasons to oppose lng </h2>
<div class="content">
<ul class="list">
<li class="first"><a href="1.html"><strong>1. LNG is a fossil fuel</strong> </a></li>
<li><a href="2.html"><strong>2. LNG is a foreign fuel</strong> </a></li>
<li><a href="3.html"><strong>3. LNG is not necessary</strong></a></li>
<li><a href="4.html"><strong>4. LNG is not green energy</strong> </a></li>
<li><a href="5.html"><strong>5. LNG threatens wildlife</strong> </a></li>
<li><a href="6.html"><strong>6. LNG is a terrorist target</strong> </a></li>
<li><a href="7.html"><strong>7. LNG reduces our quailty of life</strong> </a></li>
<li><a href="8.html"><strong>8. LNG punishes the underserved</strong> </a></li>
<li><a href="9.html"><strong>9. LNG is unsafe</strong> </a></li>
<li><a href="10.html"><strong>10. LNG is economically flawed</strong> </a></li>
</ul>
</div>
It's the 'title' section that reads 'Ten Reasons to Oppose LNG' that seems to be linked to my background.html but I cannot for the life of me figure out how. All of the other pages (1.html, 2.html, etc) do not show this title as linked, just index.html.
Thank you for your help!
Otherwise I'll need you to try to be clearer about what the issue is specifically please.
- John