• Is there a way to place a header image on the home page of the 2020 theme? I can’t find that option in the Customizer.

    Is there a way to add a slider in the header area?

    Thanks.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi, what exactly do you define as a header image? Do you have a link to a live site that you’re wanting to make the changes on that you can point out where you’d want the header image?

    Regarding the slider, there might be a plugin that could somehow add it but there isn’t any widget area in the header to add one there. Otherwise, you’d have to create a child theme ( https://developer.www.ads-software.com/themes/advanced-topics/child-themes/ ) and implement an area for the slider that way.

    Thread Starter planeo8

    (@planeo8)

    Please see https://bcycracing.org/

    I’d like to switch to the 2020 theme and would like to have an image at the top of the home screen just like the sailboat picture is on the current site.

    Hi, the TwentyTwenty theme doesn’t offer the ability to add an image above the menu like on the site you posted. You might be able to get away with using some CSS to place an image above the menu though.

    Did a quick test using the header image on that site for TwentyTwenty and came up with this

    .header-footer-group {
    	background-image: url( "https://bcycracing.org/wp-content/uploads/2020/01/cropped-NEW-HEADER-2-1.jpg" ) !important;
    	padding-top: 120px;
    	background-repeat: no-repeat !important;
    	background-size: 100% 65% !important;
    

    You could add that into Appearance->Customize->Additional CSS for TwentyTwenty and see what it does and modify values from t here.

    Turbonet

    (@knights-templates)

    Hi, the code above is great if you change the .header-footer-group to #site-header

    #site-header {
    	background-image: url( "https://bcycracing.org/wp-content/uploads/2020/01/cropped-NEW-HEADER-2-1.jpg" ) !important;
    	padding-top: 120px;
    	background-repeat: no-repeat !important;
    	background-size: 100% 65% !important;
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘HEADER IMAGE’ is closed to new replies.