/    Sign up×
Community /Pin to ProfileBookmark

Why won’t my link work?

Hello guys. I have run into another snag, while working on a project that’s of great interest to me. For some reason one of the links in a web page that I’m creating does not work, also the table won’t create alternating backgrounds, which is why I used the <span> tag, to at least change the color of the writing, but I don’t really like the span tag all that much, and would greatly prefer the alternating background like the lovely example I saw on [url]www.w3schools.com[/url]. (just not that ugly shade of green, ugh!)

Anyway, the biggest problem is the broken link, while the other problem is mostly cosmetic.

Here is the code.

[code=html] <table id=”outlines”>

<tr><th>Literary Outlines</th>
<th>Description</th>
</tr>

<tr><td>
<a href=”http://toolkitsforwriters.net78.net/NovelOutline.pdf” target=”_blank”>
<img src=”https://secdiary.com/wp-content/uploads/2011/12/Adobe-PDF-Logo1-e1323851226895.jpg” width=”25″ height=”25″ alt=”pdf file”/>Novel outline</a>
</td>

<td>An outline for fiction writers, as well as aspiring fiction writers, which includes character, outlines, chapter outlines for up to 50 chapters, note pages, and advice for writers.
</td>
</tr>

<tr class=”alt”>
<td>
<a href=”http://toolkitsforwriters.net78.net/Shortstoryoutline.pdf” target=”_blank”>
<img src=”https://secdiary.com/wp-content/uploads/2011/12/Adobe-PDF-Logo1-e1323851226895.jpg” width=”25″ height=”25″ alt=”pdf file”/>Short Story Outline</a>
</td>

<td>
<span style=”color: #513333;”>A complete outline for short stories, which has a place for outlining plot, and character notes, additional notes, as well as advice for beginning short story writers.</span>
</td>
</tr>

<tr>
<td>
<a href=”http://toolkitsforwriters.net78.net/essay%20outline.pdf” target=”_blank”>
<img src=”https://secdiary.com/wp-content/uploads/2011/12/Adobe-PDF-Logo1-e1323851226895.jpg” width=”25″ height=”25″ alt=”pdf file”/>Essay outline</a>
</td>

<td>
An outline for students, and writers for writing essays which includes spaces for cited resources, notes, and an outline for the introductory, conclusive, and supporting sentences.
</td>
</tr>

<tr class=”alt”>
<td>
<a href=”http://toolkitsforwriters.net78.net/non%20fiction%20book%20outline.pdf” target=”_blank”>
<img src=”https://secdiary.com/wp-content/uploads/2011/12/Adobe-PDF-Logo1-e1323851226895.jpg” width=”25″ height=”25″ alt=”pdf file”/>Non Fiction Book Outline</a>
</td>

<td>
<span style=”color: #513333;”>This is an outline for non fiction writers, which contains spaces for references, interview notes, and chapter outlines for up to 50 chapters, plus additional note pages, that can be used for brainstorming or to add to any section for additional notes.</span>
</td>
</tr>

</table> [/code]

Here is the CSS code to go with it:

[CODE] #outlines {
font-family: Trebuchet;
position: relative;
top: 220px;
margin-bottom: 100px;
left: 200px;
width: 750px;
right: auto;
left: 20%;

padding-left: 10px;
padding-right: 10px;
background: #A89999;
z-index: -2;
text-shadow: 0 2px 1px rgba(0,0,0,0.5);
display: block;
color: #f0f0f0;
font-size: 1.3em;
margin: 0 .5em;
font-weight: 200;

}

#outline th{
text-shadow: 0 2px 1px rgba(0,0,0,0.5);
display: block;

font-size: 1.3em;
margin: 0 .5em;
position: relative;
top: 20px;
font-size: 1.1em;
text-align: center;
padding-top: 20px;
padding-bottom: 4px;

background: #A9A9A4;
z-index: 0;
}

#outline tr.alt td {
color: #000000;
background-color: #7A7A52;
border-style: solid ;
border-width: 1px;
border-color: #260000;
padding: 10px;

}

a:link {
text-decoration: none;
color: #F1F1EA;
}

a:visited {
text-decoration: none;
color: #F1F1EA;
}

a:hover {
text-decoration: underline;
color: #F1F1EA;
}

a:active {
text-decoration: underline;
color: #F1F1EA;
[/CODE]

And here’s the link for the link that doesn’t work to show that it’s legit, and on a web server:
[URL=”http://toolkitsforwriters.net78.net/NovelOutline.pdf”]http://toolkitsforwriters.net78.net/NovelOutline.pdf[/URL]

Any help/suggestions are appreciated, thanks.

to post a comment
HTML

8 Comments(s)

Copy linkTweet thisAlerts:
@kathmeejeeauthorOct 18.2014 — If it helps, too, I do all my work in Aptana Studio. I like it, but I find it can be funny sometimes.
Copy linkTweet thisAlerts:
@Kevin2Oct 18.2014 — The address doesn't work either way. Clicking on your link above doesn't work. Copy/pasting the address from your code doesn't work either. Did you upload the file? Does the cAsE match the filename? Is the file in a sub-folder?
Copy linkTweet thisAlerts:
@kathmeejeeauthorOct 19.2014 — @kevin02. It's good to know that particular doesn't work on another computer. I may just remove it re-upload it to the server, and if it still doesn't work I might just contact the web host to find out whats up. The odd thing is that web link works on my computer, and the screen on my browser shows a web page, and not a local file, so idk what's up with that.
Copy linkTweet thisAlerts:
@kathmeejeeauthorOct 19.2014 — *that particular link I mean
Copy linkTweet thisAlerts:
@Kevin2Oct 19.2014 — *that particular link I mean[/QUOTE]

I smelled what you were steppin' in. ?

As far as your text color stuff goes, try this:
[code=html] <table id="outlines">

<tr><th>Literary Outlines</th>
<th>Description</th>
</tr>


<tr><td>
<a href="http://toolkitsforwriters.net78.net/NovelOutline.pdf" target="_blank">
<img src="https://secdiary.com/wp-content/uploads/2011/12/Adobe-PDF-Logo1-e1323851226895.jpg" width="25" height="25" alt="pdf file"/>Novel outline</a>
</td>

<td>An outline for fiction writers, as well as aspiring fiction writers, which includes character, outlines, chapter outlines for up to 50 chapters, note pages, and advice for writers.
</td>
</tr>


<tr>
<td>
<a href="http://toolkitsforwriters.net78.net/Shortstoryoutline.pdf" target="_blank">
<img src="https://secdiary.com/wp-content/uploads/2011/12/Adobe-PDF-Logo1-e1323851226895.jpg" width="25" height="25" alt="pdf file"/>Short Story Outline</a>
</td>

<td class="alt">
A complete outline for short stories, which has a place for outlining plot, and character notes, additional notes, as well as advice for beginning short story writers.
</td>
</tr>

<tr>
<td>
<a href="http://toolkitsforwriters.net78.net/essay%20outline.pdf" target="_blank">
<img src="https://secdiary.com/wp-content/uploads/2011/12/Adobe-PDF-Logo1-e1323851226895.jpg" width="25" height="25" alt="pdf file"/>Essay outline</a>
</td>

<td>
An outline for students, and writers for writing essays which includes spaces for cited resources, notes, and an outline for the introductory, conclusive, and supporting sentences.
</td>
</tr>


<tr>
<td>
<a href="http://toolkitsforwriters.net78.net/non%20fiction%20book%20outline.pdf" target="_blank">
<img src="https://secdiary.com/wp-content/uploads/2011/12/Adobe-PDF-Logo1-e1323851226895.jpg" width="25" height="25" alt="pdf file"/>Non Fiction Book Outline</a>
</td>

<td class="alt">
This is an outline for non fiction writers, which contains spaces for references, interview notes, and chapter outlines for up to 50 chapters, plus additional note pages, that can be used for brainstorming or to add to any section for additional notes.
</td>
</tr>

</table>[/code]


And your CSS:
#outlines {
font-family: Trebuchet;
position: relative;
top: 220px;
margin-bottom: 100px;
left: 200px;
width: 750px;
right: auto;
left: 20%;

<i> </i> padding-left: 10px;
<i> </i> padding-right: 10px;
<i> </i> background: #A89999;
<i> </i> z-index: -2;
<i> </i> text-shadow: 0 2px 1px rgba(0,0,0,0.5);
<i> </i> display: block;
<i> </i> color: #f0f0f0;
<i> </i> font-size: 1.3em;
<i> </i> margin: 0 .5em;
<i> </i> font-weight: 200;

<i> </i> }


<i> </i> #outline th{
<i> </i> text-shadow: 0 2px 1px rgba(0,0,0,0.5);
<i> </i> display: block;

<i> </i> font-size: 1.3em;
<i> </i> margin: 0 .5em;
<i> </i> position: relative;
<i> </i> top: 20px;
<i> </i> font-size: 1.1em;
<i> </i> text-align: center;
<i> </i> padding-top: 20px;
<i> </i> padding-bottom: 4px;

<i> </i> background: #A9A9A4;
<i> </i> z-index: 0;
<i> </i> }

<i> </i> #outline tr.alt td {
<i> </i> color: #000000;
<i> </i> background-color: #7A7A52;
<i> </i> border-style: solid ;
<i> </i> border-width: 1px;
<i> </i> border-color: #260000;
<i> </i> padding: 10px;


}

a:link {
text-decoration: none;
color: #F1F1EA;
}

a:visited {
text-decoration: none;
color: #F1F1EA;
}

a:hover {
text-decoration: underline;
color: #F1F1EA;
}

a:active {
text-decoration: underline;
color: #F1F1EA;
}
.alt {
color: #513333;
}
Copy linkTweet thisAlerts:
@HemanthmalliOct 20.2014 — The address is also not working i think there is a issue with hosting.
Copy linkTweet thisAlerts:
@KiethHoytOct 21.2014 — It seems like everything is right. I clicked the link everyone said isn't working and it showed the PDF.

Were you able to get it fixed?
Copy linkTweet thisAlerts:
@kiwistechOct 22.2014 — I checked that pdf link it is working perfectly fine at my side, why are you calling it broken?
×

Success!

Help @kathmeejee spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.21,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,
)...