• I tried
    #footer .pad {
    padding-bottom: 0px;
    padding-top: 0px;
    }

    But default footer text is still visible in black color. How do i remove that and keep only the footer menu of white color.

    Also, I wish to make the width of footer menu same as the width of my main site (1025px). How do i sqeeze it? (without using the boxed design)

    Thanks.

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter yuvrajranga

    (@yuvrajranga)

    I have changed the footer color to white so the text is now hidden. But it is ofcourse taking a lot of extra space so padding of footer text has to be done.
    Also, entire footer is of full page width which needs to be squeezed.

    Hi Yuvraj,
    ?
    You can try taking advantage of tools such as Inspect or Firebug which can aid in customizing. These are useful 3rd party tutorials on how to go about using Inspect.
    ?


    https://developers.google.com/web/tools/chrome-devtools/inspect-styles/
    ?
    Thank you!

    Anonymous User 16453565

    (@anonymized-16453565)

    hey yuvrajranga,

    To do that you just have to add below css code into your stylesheet or you can also add this code into your additional css from theme customizer.

    #footer {
      width: 1025px !important;
      margin: 0 auto;
    }
    
    ul#menu-pages li:first-child {
      display: none;
    }

    Hope it will help you.

    Thank you.

    • This reply was modified 6 years, 2 months ago by Anonymous User 16453565.
    Thread Starter yuvrajranga

    (@yuvrajranga)

    Thank you very much both of you guys.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Hide the footer, keep only footer menu’ is closed to new replies.