What's new

Welcome to the forum 👋, Visitor

To access the forum content and all our services, you must register or log in to the forum. Becoming a member of the forum is completely free.

How to format Table Cols

jPaul

New member
Joined
Aug 16, 2022
Messages
3
Reaction score
0
HTML Coins
0
Hi Everybody,

I'm trying to create a table and need to format each column a little differently:

<table>
<tr>
<td> Col-1 </td>
<td> Col-2 </td>
</tr>
</table>

I want to align the text in Col-1 to the RIGHT, and set the background-color to a HEX-color.
I want to align the text in Col-2 to the LEFT, and set the background-color to a different HEX-color.

I hope to include these alterations in a PHP statement:

<?PHP
print "<tr><td>Your USER name is: </td><td>$uName</td></tr>\n";
print "<tr><td>Your eMAIL address is: </td><td>$uPassword</td></tr>\n";
?>

Am I on the right track? How can I include a [text-align: right] and [background-color: #cc0000] to the <td> tags?

Many Thanks,
Paul
 
Hello this is Gulshan Negi
Yes, you are on a right track. If you want to apply different styles to each column in your table, you can use HTML and CSS. Here's an example of how you can modify your code to include the desired text alignment and background color:

print "<tr><td style='text-align: right; background-color: #cc0000;'>Your USER name is: </td><td>$uName</td></tr>\n";
print "<tr><td style='text-align: left; background-color: #00cc00;'>Your eMAIL address is: </td><td>$uPassword</td></tr>\n";

I hope you are now clear.
Thanks
 
Thank you, Mr. Negi

I do understand your suggestion. Thank you for taking some of your time to respond to me.
I am on a better track now.
 

Theme customization system

You can customize some areas of the forum theme from this menu.

  • Wide/Narrow view

    You can control a structure that you can use to use your theme wide or narrow.

    Grid view forum list

    You can control the layout of the forum list in a grid or ordinary listing style structure.

    Picture grid mode

    You can control the structure where you can open/close images in the grid forum list.

    Close sidebar

    You can get rid of the crowded view in the forum by closing the sidebar.

    Fixed sidebar

    You can make it more useful and easier to access by pinning the sidebar.

    Close radius

    You can use the radius at the corners of the blocks according to your taste by closing/opening it.

  • Choose the color combination that reflects your taste
    Background images
    Color gradient backgrounds
Back