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] Contact Us Issue Solved #301

Closed
wants to merge 1 commit into from
Closed
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
8 changes: 4 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -622,7 +622,7 @@ <h2>Explore Popular Destinations</h2>
<div class="contact-container">
<div class="grid-container">
<div class="text-container">
<div class="heading">
<div style="margin-bottom: 20px;" class="heading">
<h2 class="title">CONTACT US</h2>
<p class="description">At BuddyTrail, we are here to assist you every step of the way! Whether you have questions, feedback, or just want to learn more about our platform, feel free to reach out to us. Our team is committed to providing you with the best experience as you explore new trails and make new friends along the way.</p>
</div>
Expand Down Expand Up @@ -674,7 +674,7 @@ <h2 class="form-title">Ready to Get Started?</h2>
<div class="input-group">
<input type="text" id="name" placeholder="Your name" class="input-field">
<input type="email" id="email" placeholder="Your email address" class="input-field">
<textarea id="textarea" placeholder="Write your message..." class="input-field"></textarea>
<textarea id="textarea" rows="10" placeholder="Write your message..." class="input-field"></textarea>
</div>
<div class="submit-button-container">
<button type="submit" class="submit-button">Send Message</button>
Expand Down Expand Up @@ -734,8 +734,8 @@ <h2>Rate your experience</h2>
placeholder="Describe any issue with the staff here. Please explain every single detail ex:location,name of the person"
></textarea>

<div class="form-button"> <button type="submit">Send</button>
</div> </form>
<div class="form-button"><button type="submit">Send</button></div>
</form>
</div>
</div>
</div>
Expand Down
11 changes: 9 additions & 2 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -1388,9 +1388,9 @@ justify-content: center;
color: black;
}
.description {
color: #4b5563;
color: #000000;
margin-top: 1rem;
font-size: 1.25rem;
font-size: 1.3rem;
}

/* Contact Container */
Expand Down Expand Up @@ -1423,10 +1423,17 @@ justify-content: center;
.info-list {
list-style: none;
padding: 0;

background-color: #94949453;
border-radius: 10px;
padding: 10px 0 10px 20px;

}

.info-item {
display: flex;
justify-content: start;
align-items: center;
margin-bottom: 1.5rem;
}

Expand Down