• Resolved Kubuu

    (@kubuu)


    Hello,

    Thanks for you work with this theme. I have two questions.

    1 – How do I change the “hover” color of the Site Title and Footer Title elements?
    2 – What code would I have to adjust to ensure that the footer always stays at the bottom of the page?

    Thank you.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author Tim Nicholson

    (@timnicholson)

    Thanks. To change the hover color of the Site Title, you need to add the following CSS:
    .site-title a:hover, .site-title a:active { color: #ff7878; }

    Here is how you’d change the footer title color:
    .sidebar-footer h2 { color: #f2f2f2; }

    I’m not exactly sure what you mean by ensuring the footer stays at the bottom of the page. Do you mean you want to “stick” (affix) the “after footer” (bottom nav and site credits) to the bottom of the screen? If so, you could do its something like this:

    .after-footer {
        position: fixed;
        right: 0;
        left: 0;
        bottom: 0;
        margin-bottom: 0;
        border-width: 1px 0 0;
        width: 100%;
        z-index: 1030;
    }
    .body {
        padding-bottom: 73px;
    }

    The first part fixes it to the bottom of the screen. The second part is necessary so that the content above it doesn’t get chopped off.

    Thread Starter Kubuu

    (@kubuu)

    Thank you for assistance my friend. Also, do you know how I can adjust the width of the sidebar area? I’d like to narrow it down a bit. My apologies if I should be making a new post for this. Thanks!

    *Edit* Actually, you answered this question in a former post. Thank you again!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to change the Site Title and Footer "hover" color’ is closed to new replies.