Hi sstacila,
If you are talking about the logo and main menu, you can see that your logo has a margin-right:50px;
So you can apply this:
.navbar-brand {margin-right:0;}
Let me know if it works!
I think the part i am talking about on my site isn’t that.
I wish i could put a screenshot for you but i dont see an upload file to do that.
if you look at
https://healingeyes.org/support/
and then see the horizontal gray bar with the words Home / Donate
I need that part to not have the white space above it. I want it to shift up next to the page header photo. I don’t like how people have to scroll so far down to get to the website content.
Oh I see.
You can locate “.page-breadcrumbs” and change itΒ΄s margin top. Check this:
.page-breadcrumbs {
margin-top: 140px;
}
Let me know if it works!
yes that worked
curious is there a way to hide that .page-breadcrumbs completely?
Yes, of course!
Use this instead:
.page-breadcrumbs {
display:none;
}
If you are going to hide it like this, maybe you want to reduce the margin between header and content. To do that use:
.page-mycarousel {
margin-bottom: 46px;
}
Change the value margin-bottom and find one that you think is fine π
thank you it worked.
Do you by chance know how to make the circles not spin or animate in the Service settings?
it’s the 3 circles you see when you scroll down on my homepage.
http://www.healingeyes.org
Hi,
You can add this to your CSS:
.service-box img {
transition: none;
}
Let me know if works!
Great!
Please mark this topic as resolved π
I forgot one thing.
How do i get rid of the spinning on the About us Page with the info on Members of the team?
what are those called to insert into this code?
.service-box img {
transition: none;
}
I think you figure it out on your own!
Congrats π
haha yea I literally just did by looking at the source page code and searching for Team π
thanks anyways
That is what we all do π