thebootlegstudios
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Sydney] How to reduce the banner at the top of my mobile sitePerfect!! Thank you for your help!
This works perfectly! Thanks a million for your help again Kharis!!
I have almost solved the above issue I mentioned by entering the css
@media only screen and (max-width: 767px) {
.header-slider {
` position: relative;
max-width: 100%;
max-height: 60vh !important;
}.text-slider-section {
min-height: 0;
top: 50% !important;
bottom: 0;
}
}The slider images now look great on the mobile version, but the slider text is not centered to the images, any ideas on how to tweak this?
I also noticed, and I’m sure it’s an easy fix… but on my mobile site, the header slider images seem to be out of proportion on the mobile screen.
The ‘header type’ is set to ‘full screen slider’ which works perfectly on the desktop version, but it doesn’t seem to scale down appropriately for the mobile version..
Do you know if this can be solved easily?
I know this is a second issue, but seeing as you’re clearly a pro, I hoped I could tap into your knowledge just a little more..
Thanks again Kharis!!
Thank so so much Kharis, for your help in solving this.
I followed your instructions and, they worked perfectly!!
I made a few tiny alterations to the (margin-top: px) codes, to align the menu, title and search icon, perfectly.
I changed:
.header-wrap .btn-menu{
float: left;
margin-left: 15px;
margin-top: -50px;to this:
.header-wrap .btn-menu{
float: left;
margin-left: 15px;
margin-top: -40px;and also changed:
.mobile-search .search-menu{
color: #fff;
font-size: 25px;
cursor: pointer;
position: absolute;
top: -60px;
right: 15px;to this:
.mobile-search .search-menu{
color: #fff;
font-size: 25px;
cursor: pointer;
position: absolute;
top: -42px;
right: 15px;Just two tiny little tweaks and it is now perfectly aligned on the mobile site!!
Thank you so much again for this help, I really appreciate it, and hope others can also benefit.
Forum: Themes and Templates
In reply to: [Sydney] Add Dropshadow to the Slider Text?Issue for drop shadow on all slider text resolved. Add Code to the custom css drop down in customize.
.text-slider .maintitle{
text-shadow: 1px 1px #252525;
}
.text-slider .subtitle{
text-shadow: 1px 1px #252525;I still don’t know how to add drop shadow to the site title and menu text though… Anyone??
Forum: Themes and Templates
In reply to: [Sydney] Add Dropshadow to the Slider Text?That worked great for the maintitle, what code should I input if I want all the text on the header / slider to have drop shadow? Thanks