Go Back   CodingForums.com > :: Client side development > HTML & CSS

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 07-24-2012, 12:17 AM   PM User | #1
nick2price
Regular Coder

 
Join Date: May 2009
Posts: 104
Thanks: 47
Thanked 1 Time in 1 Post
nick2price is an unknown quantity at this point
Changing text position

Hi, for my site, I use a table to display some data. The format is pretty much like
Code:
<td><a href="#">Buy a <strong>Pen</strong><span class="tableText">from <strong>£1.00</strong></span></a></td>
And the way it is set up with css, it displays on my site like (dots do not display, this is only used to create the space).
Quote:
Buy a Pen.............................................from £1.00
So everything works perfectly, but now I am working with my media quiries. What I need is the tableText inside every <td> to display on a new line, so the above would be like
Quote:
Buy a Pen
from £1.00
Is it possible to create basically a paragraph with css, or create a new line? I cant change the html because otherwise it will change the layout to my desktop version of the website.

Cheers
nick2price is offline   Reply With Quote
Old 07-24-2012, 01:37 AM   PM User | #2
tempz
Regular Coder

 
Join Date: Jul 2012
Location: London
Posts: 436
Thanks: 4
Thanked 80 Times in 80 Posts
tempz is an unknown quantity at this point
Code:
<table style="width: 11%">
	<tr>
<td><a href="#">Buy a <strong>Pen</strong></a></td>
	</tr>
	<tr>
<td><span class="tableText">from <strong>£1.00</strong></span></td>
	</tr>
</table>

Last edited by tempz; 07-24-2012 at 01:40 AM..
tempz is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 12:32 AM.


Advertisement
Log in to turn off these ads.