Very basic HTML/CSS question- having a link line up with the rest of the sentence - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T19:41:02Zhttp://stackoverflow.com/feeds/question/1080845http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1080845/very-basic-html-css-question-having-a-link-line-up-with-the-rest-of-the-sentence0Very basic HTML/CSS question- having a link line up with the rest of the sentenceOlegious2009-07-03T21:12:49Z2009-07-04T11:59:39Z
<p>So I want to have this: </p>
<p>In association with Company Name</p>
<p>What I'm getting right now is this: </p>
<p>In association with
Company Name</p>
<p>The company name is a link, but I have my links be red with no underlining by setting them to a class in CSS. </p>
<p>This is the html I have: </p>
<pre><code><a>In association with <div id="bodylinks" class="bodylink"><a href="url.com">Company Name</a></a></div>
</code></pre>
<p>Here is the CSS associated with bodylink</p>
<pre><code>.bodylink a
{
font: 14px Helvetica;
color: red;
text-decoration:none;
}
</code></pre>
<p>So the company name gets thrown to the next line because it is a different div, how can I avoid this and still use the .bodylink a class to format the link?</p>
<p>Thank you</p>
http://stackoverflow.com/questions/1080845/very-basic-html-css-question-having-a-link-line-up-with-the-rest-of-the-sentence/1080886#10808862Answer by allyourcode for Very basic HTML/CSS question- having a link line up with the rest of the sentenceallyourcode2009-07-03T21:22:48Z2009-07-03T21:22:48Z<p>div's are used to create new sections (divisions) in your page. If you don't intend the link to be in a new section, you should remove it and give the tag the class attribute like this:</p>
<pre><code><a class="bodylink" href="www.example.com">link text</a>
</code></pre>
<p>You'll also need to change your CSS so it applies to tags with class bodylink like this:</p>
<pre><code>a.bodylink {
/* styling */
}
</code></pre>
http://stackoverflow.com/questions/1080845/very-basic-html-css-question-having-a-link-line-up-with-the-rest-of-the-sentence/1080889#10808890Answer by Peter for Very basic HTML/CSS question- having a link line up with the rest of the sentencePeter2009-07-03T21:23:46Z2009-07-03T21:23:46Z<p>Try using a span instead, or give the anchor (<a>) itself the class.</p>
http://stackoverflow.com/questions/1080845/very-basic-html-css-question-having-a-link-line-up-with-the-rest-of-the-sentence/1080891#10808910Answer by RegDwight for Very basic HTML/CSS question- having a link line up with the rest of the sentenceRegDwight2009-07-03T21:24:10Z2009-07-03T21:24:10Z<p>Use <code><span></code> instead, an inline element that doesn't break the text flow. <code><div></code> is a block element that creates a "line break" so to speak.</p>
<p>Also, you've got the nesting of your elements all wrong. That's not valid HTML.</p>
http://stackoverflow.com/questions/1080845/very-basic-html-css-question-having-a-link-line-up-with-the-rest-of-the-sentence/1080924#10809241Answer by steve_c for Very basic HTML/CSS question- having a link line up with the rest of the sentencesteve_c2009-07-03T21:36:31Z2009-07-03T21:36:31Z<p>No one bothered to mention that his markup is syntactically incorrect. You can't have the opening anchor tag outside the div, and the closing anchor tag inside.</p>
<p>The div tag is a block level element. You need an inline element, such as a span tag, as others here have suggested.</p>
http://stackoverflow.com/questions/1080845/very-basic-html-css-question-having-a-link-line-up-with-the-rest-of-the-sentence/1082063#10820631Answer by Ryan for Very basic HTML/CSS question- having a link line up with the rest of the sentenceRyan2009-07-04T11:53:57Z2009-07-04T11:53:57Z<pre><code><div class="bodylink">In association with <a href="url.com">Company Name</a></div>
</code></pre>
<p>Why do you ahve the whole line anchored? If you use the code above the line in in a div with the class formatting and the Company Name is linked.</p>
<p>Ryan</p>
http://stackoverflow.com/questions/1080845/very-basic-html-css-question-having-a-link-line-up-with-the-rest-of-the-sentence/1082069#10820690Answer by JohnZ for Very basic HTML/CSS question- having a link line up with the rest of the sentenceJohnZ2009-07-04T11:59:39Z2009-07-04T11:59:39Z<p>First of all the HTML code should be corrected, as steve_c said.</p>
<p>And to make a div appear inline with other content use the <code>display: inline;</code> CSS code on the div you want to appear inline.</p>
<p>Example:</p>
<pre><code>the text before div <div style="display: inline;"><a href="#">the link in the text</a></div>
</code></pre>