Change the Location of Home Page Buttons

M Started by Meng · October 17, 2018 at 3:25 am · 6 replies 1 voice Last reply 7 years, 8 months ago
M
Meng Original poster Member
#1

I found one of the topics about changing the location of Home Page Heading. It is really helpful. But after I did that, I realised that the location of Home Page Buttons changed as well. So how can I make the Home Page Buttons stay at the original location while I change the Home Page Heading location?

ST
Spiracle Themes Original poster
#4

Hi Meng,

Add this CSS

.slide-bg-section .slide-bg-text {
display: table-cell;
vertical-align: middle;
}

Copy and paste this in Appearance -> Customize -> Additional CSS

Best Regards

M
Meng Original poster
#5

Hi, thank you for your help but the CSS you provide in the last reply didn’t solve my problem.
It just moved home page heading and the button back to the original place.
Is it possible that I can leave the button in the middle and just move the heading down to the bottom?

ST
Spiracle Themes Original poster
#6

Hi Meng,

Try this one

.slide-bg-section .slide-bg-text {
display: table-cell;
vertical-align: bottom;
}

.slide-bg-section .slide-buttons {
clear: right;
position: absolute;
top: 40%;
left: 45%;
}

@media only screen and (max-width: 320px) {

.slide-bg-section .slide-buttons {
clear: right;
position: absolute;
left: 28% !important;
}
}

@media only screen and (max-width: 480px) {

.slide-bg-section .slide-buttons {
clear: right;
position: absolute;
left: 32%;
}
}

Best Regards

Post a reply

Join the conversation. Be kind — this is a public forum.

Replying to Change the Location of Home Page Buttons

By posting, your reply becomes public (unless marked private).