• Resolved DAZDOREY

    (@dazdorey)


    Hello Out There!

    Can I add a thick footer bar to my website build in Twenty Ten -child?

    See https://www.thewowshowcase.com

    QUESTIONS:
    Do I add the footer code into the CSS? or into the different pages i will add so it will move according to content?

    Can I use a image instead of a solid colour?

    Thanks sooooo much!

Viewing 8 replies - 1 through 8 (of 8 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Can I add a thick footer bar

    Do you want the thickness the same as your navigation?

    Thread Starter DAZDOREY

    (@dazdorey)

    Do you mean navigation as the top Menu bar?
    I would like it to be 6x thicker so I can add an image background…
    but I also want to use the navigation form the top menu bar.

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    I would like it to be 6x thicker so I can add an image background…

    In your child theme stylesheet, add to the bottom of the file;

    #footer {
     height: 228px;
     background-image: url("/wp-content/themes/yourTheme/yourDirectory/yourImage.yourFileExtension);
    }

    but I also want to use the navigation form the top menu bar.

    In your child theme footer.php file, use the same function that generates the navigation from the header.php file (probably wp_nav_menu().

    Thread Starter DAZDOREY

    (@dazdorey)

    THANK YOU THANK YOU SOOOO MUCH.

    I know I have asked this question in the past but….
    WHY??? is the footer image repeating (and the wrapper image under it also).
    I just want it to appear once.

    M

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Background images will repeat automatically, it is the default position.
    If you do not want this, you can specify-so with CSS.

    Thread Starter DAZDOREY

    (@dazdorey)

    Dear Andrew Nevins,
    I placed in this code

    #footer {
    height: 228px;
    background-image: url(https://www.thewowshowcase.com/wp-content/uploads/2012/09/cmpfooter.png);background-no repeat:no repeat-y;
    clear: both;
    width: 100%;
    }and it did not stop the repeat.
    How did I screw up the code?

    regards,
    Marie

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Have you tried the link I used in my last post?

    Thread Starter DAZDOREY

    (@dazdorey)

    THANK YOU!

    It now is working for me.
    So appreciated!

    M

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘adding a footer in Twenty Ten’ is closed to new replies.