Hello There,
Thanks for writing in!
1.) To remove the drop shadow from gallery media files in your portfolio posts, please add the following CSS code in the X > Theme Options > Global CSS (http://prntscr.com/evui3r)
.wp-caption, .gallery-item {
border: none;
box-shadow: none;
}
2.) To remove the lines at the bottom of your page, please add the following CSS code in the X > Theme Options > Global CSS (http://prntscr.com/evui3r)
.x-colophon,
.x-colophon+.x-colophon {
border: none;
}
3.) To make the Portfolio titles appear on top of the feature image upon hovering, instead of underneath, you can use this css code:
.x-iso-container>.hentry {
position: relative;
margin-bottom: 20px;
}
.x-iso-container-portfolio .hentry .entry-wrap {
position: absolute;
top: 0;
left: 3.25%;
width: calc(100% - 6.5%);
height: calc(100% - 6.5%);
background-color: rgba(0,0,0,0.5);
opacity: 0;
transition: opacity 1s ease;
}
.x-iso-container-portfolio .hentry:hover .entry-wrap {
opacity: 1;
}
.x-iso-container-portfolio .entry-wrap .entry-header {
margin-top: 60px;
}
.x-iso-container-portfolio .entry-wrap .entry-header .entry-title.entry-title-portfolio a{
color: white;
}
4.) To remove the drop shadow from the contact form, please add the following CSS code in the X > Theme Options > Global CSS (http://prntscr.com/evui3r)
textarea:focus, input[type="text"]:focus, input[type="password"]:focus,
input[type="datetime"]:focus, input[type="datetime-local"]:focus,
input[type="date"]:focus, input[type="month"]:focus, input[type="time"]:focus,
input[type="week"]:focus, input[type="number"]:focus, input[type="email"]:focus,
input[type="url"]:focus, input[type="search"]:focus, input[type="tel"]:focus,
input[type="color"]:focus, .uneditable-input:focus {
box-shadow: none;
}
We would loved to know if this has work for you. Thank you.