Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: resolve alignment issue of email textfield in Contact Us form #1462

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dedicated-destinations/Paris/Paris.css
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
display: flex;
gap: .7rem;
font-weight: bold;
text-align: center;
text-align: center;

}

Expand Down
2 changes: 1 addition & 1 deletion dedicated-destinations/Paris/start.html
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ <h3><i class="fa fa-undo"></i> Free cancellation</h3>

<div class="check-in">
<label for="">CHECK IN :</label>
<input type="datetime-local" name="" id="chk-design">
<input type="date" name="" id="chk-design">
</div>
<div class="check-out">
<label for="">CHECK OUT :</label>
Expand Down
37 changes: 22 additions & 15 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
bottom: 18px;
}
</style>
</style>
<link rel="stylesheet" href="./loader.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" />
<link rel="stylesheet" href="faq-website.css">
Expand Down Expand Up @@ -1933,21 +1934,27 @@ <h1>Contact Us</h1>
<i class="icon1 fa-solid fa-user"></i>
<input type="text" id="Name" placeholder="Name" style="padding-left: 6%;">
</div>
<div style="position: relative;">
<i class="icon2 fa-solid fa-envelope"></i>
<input type="email" id="email" placeholder="Email" class="contact-us-email-fix" style="padding-left:6%; width: 50% !important;
padding-left: 6% !important;
padding-bottom: 10px !important;
margin: 20px !important;
margin-left: 30px !important;
outline: none !important;
border: none !important;
font-size: 15px !important;
background: none !important;
border-bottom: 1px solid var(--text-dark) !important;
color: var(--text-dark) !important;
font-family: 'Oxygen', sans-serif !important; border-radius: 20px;" required>
</div>
<div style="position: relative; width: 100%; max-width: 800px;">
<i class="icon2 fa-solid fa-envelope"
style="position: relative; left: 25px; top: 50%; transform: translateY(-50%); font-size: 16px; color: rgb(119, 115, 115);"></i>

<input type="email" id="email" placeholder="Email" class="contact-us-email-fix"
style="padding-left: 40px; /* Space for the icon */
width: 50%; /* Full width for responsiveness */
padding-bottom: 10px !important;
margin: 20px 0 !important;
border: none;
border-bottom: 1px solid var(--text-dark) !important;
outline: none !important;
font-size: 15px !important;
background: none !important;
color: var(--text-dark) !important;
font-family: 'Oxygen', sans-serif !important;
border-radius: 0px;"
required>
</div>


<div style="position: relative;">
<i class="icon3 fa-solid fa-message"></i>
<textarea id="message" placeholder="Type your message here.." style="padding-left:6%;"
Expand Down
3 changes: 2 additions & 1 deletion styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -2938,7 +2938,8 @@ input[type="email"] {
width: 250px;
border: 1px solid #ccc;
border-radius: 3px;
margin-right: 10px;
margin-right: 20px;
margin-left: 0px;
margin-bottom: 10px;
font-size: 14px;
}
Expand Down
Loading