• Resolved ado.kulovic

    (@adokulovic)


    Hi,

    Is there a way how to change width of the footer line (the one where is site copyrighted)?

    Also, I would like to change color of that line and one on which menu is placed.

    Thanks,

Viewing 15 replies - 1 through 15 (of 16 total)
  • If you post a link to your site, someone can likely help you with CSS questions like this.

    Thread Starter ado.kulovic

    (@adokulovic)

    Did you modify the theme footer? It doesn’t look like the original theme code? Or is that a theme option?

    Thread Starter ado.kulovic

    (@adokulovic)

    I removed Copyrights from grey line in down area, and installed plugin which made my copyrights.

    Ah, okay, so long as you aren’t modifying any theme files – as your changes will be overwritten when the theme is updated – if you want to make those kinds of changes, you can use a Child Theme.

    I’m not sure what you mean by changing the width of that line – can you clarify?

    Thread Starter ado.kulovic

    (@adokulovic)

    I would like that “footer grey line” (the line on which copyrights used to be) is thick as “menu grey line” :-).

    Also, I would like to change color for both lines.

    It would be great if I could that through CSS.

    Thanks,

    See if adding this to your Custom CSS will do it for you:

    #site-generator .site-info {
       padding: 0;
    }
    
    #site-generator, #header-menu {
       background-color: #xxxxxx;
    }

    Also, change these in your CSS:

    #site-generator .powered {
        display: none;
    }
    
    #site-generator .copyright {
        display: none;
    }

    Thread Starter ado.kulovic

    (@adokulovic)

    Hello,

    Whean I do:

    #site-generator .site-info {
    padding: 0;
    }

    Line is not thick enough. Is there a way to customize its thickness?

    Color chamge works, but is there a way to make those line diffrently colored? Code you gave me changes the color of both lines.

    Thanks,

    You can make the padding bigger than zero – just add something like 5px – and adjust that as you like.

    For separate colors:

    #header-menu {
       background-color: #xxxxxx;
    }
    #site-generator {
       background-color: #xxxxxx;
    }

    Thread Starter ado.kulovic

    (@adokulovic)

    sorry, I am not sure how to add pixelage?

    color works

    Change this:

    #site-generator .site-info {
       padding: 5px;
    }

    Thread Starter ado.kulovic

    (@adokulovic)

    I think it works.

    Do you maybe know how meny pixels is menu bar?

    tx,

    Try 12 in the above CSS.

    Thread Starter ado.kulovic

    (@adokulovic)

    I beleive thats it.

    thanks man!

    Thread Starter ado.kulovic

    (@adokulovic)

    works like a charm.

Viewing 15 replies - 1 through 15 (of 16 total)
  • The topic ‘Header and footer bars’ is closed to new replies.