I have successfully implemented certain aspects of my responsive website, but I am encountering some difficulties in moving specific tables. I can adjust the table in various directions, except for moving it downwards. Even when adding the word !important after specifying the top position, the desired lower placement is not achieved. Likewise, I am facing challenges moving the first picture to the right and the second picture further down....
Here is the code pertaining to the first issue:
.header2_user_information {
background-color: #FAEBD7;
table-layout: fixed;
width: 110%;
position: relative;
right: 20em;
}
<table class="header2_user_information">
<tr>
<th colspan="2">User\'s General Information</th>
</tr>
<tr>
<th>First Name:</th><td>Mervin</td>
</tr>
<tr>
<th>Last Name</th><td>Lee</td>
</tr>
<tr>
<th>Email Address:</th><td><a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="97e7fef6f9f8a7a7a6a6d7f0faf6fefbb9f4f8fa">[email protected]</a></td>
</tr>
<tr>
<th>User ID:</th><td>piano0011</td>
</tr>
<tr>
<th>Administrator Status:</th><td>None</td>
</tr>
<tr>
<th>Moderator Status:</th><td>None</td>
</tr>
<tr>
<th>Premium Membership Status:</th><td>Member</td>
</tr>
</table>
The challenge with the second problem closely resembles the first...