Button font and banner help
-
Hi –
Another question:
Is it possible to change the font of the “read more” buttons on my homepage under my featured content?
also –
I added custom CSS to make my banner semi-transparent. However, it only works in the desktop version. It changed the banner on the mobile version to solid gray and now it’s static. How can I make the mobile version of the banner semi transparent and move as you scroll?
Thanks!
The blog I need help with is: (visible only to logged in users)
-
Hi,
This custom CSS will allow you to change the font of your buttons:
.button { font-family: "Arial" !important; }
As for the banner image, can you post the custom CSS you used? One thing to keep in mind about the banner image is that parallax is disabled on mobile because it is not fully supported by mobile devices.
-
Okay thanks! and no problem on the banner. Am I able to change the banner color just to black on the mobile version then? and leave it the way it is on desktop?
-
Give this custom CSS a try:
@media only screen and (max-width: 700px) { #header #home-banner { background: none !important; } }
-
that turned the header photo black. I’m looking to turn the banner (the one with the logo and menu on it) black just on mobile
-
Oh, haha. Sorry about that. That would actually be the header you are referring to.
@media only screen and (max-width: 700px) { #header { background: #000 !important; } }
-
great – that worked. thank you!
One more question – how can I decrease the space between my “on the blog” section and “follow on Instagram” section?
-
-
Try this custom CSS:
body #home-content .inside { margin-top: -50px !important; } #main-nav li a { color: #fff !important; }
- The topic ‘Button font and banner help’ is closed to new replies.