So I want to have this:
In association with Company Name
What I'm getting right now is this:
In association with Company Name
The company name is a link, but I have my links be red with no underlining by setting them to a class in CSS.
This is the html I have:
<a>In association with <div id="bodylinks" class="bodylink"><a href="url.com">Company Name</a></a></div>
Here is the CSS associated with bodylink
.bodylink a
{
font: 14px Helvetica;
color: red;
text-decoration:none;
}
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?
Thank you