How to Customize Banner Slider Fonts & Colors
- Posted by Chris Gregor (3) Offline
Is there a way to customize font sizes, colors, opacity, etc. in Banner Slider? - I'd specifically like to tweak a few of the spec's in the slider type "Sequence" using theme "Style 2"
8 years 5 months ago #1
by Chris Gregor
Please Log in or Create an account to join the conversation.
- Posted by TemplatePlazza (5310) Offline
Hi, You can override by adding few lines of css code.
Please let me know your website url and let me know what change you want to get so I can suggest the css code.
8 years 5 months ago #2
by TemplatePlazza
Please let me know your website url and let me know what change you want to get so I can suggest the css code.
Please Log in or Create an account to join the conversation.
- Posted by Chris Gregor (3) Offline
Website is: www.golfwashington.com - You'll see the banner slider on the home page - I'd like to perhaps change the font size and color of the banner name & description that appears on each banner - I'd also like to either lighten the opacity of the brown background on which the banner name & description overlay, or just change the brown background color to white - Please let me know how to proceed - Thanks
8 years 5 months ago #3
by Chris Gregor
Please Log in or Create an account to join the conversation.
- Posted by Chris Gregor (3) Offline
To keep it easy, I'd be interested in the css code to do the following:
1) Reduce the font size of the banner title by 2 pts.
2) Change the font color of the text in both the banner title & description to: #4d0623
3) Change the background color of the slider title & description from the brown to white: #ffffff
8 years 5 months ago #4
by Chris Gregor
1) Reduce the font size of the banner title by 2 pts.
2) Change the font color of the text in both the banner title & description to: #4d0623
3) Change the background color of the slider title & description from the brown to white: #ffffff
Please Log in or Create an account to join the conversation.
- Posted by TemplatePlazza (5310) Offline
Hi, try to add this code to your css file :
8 years 5 months ago #5
by TemplatePlazza
.seqtitle a {
font-size:30px!important;
color:#4d0623!important;
background:rgba(255,255,255,0.8)!important;
}
.subseqtitle {
font-size:18px!important;
color:#4d0623!important;
background:rgba(255,255,255,0.8)!important;
}
Please Log in or Create an account to join the conversation.