• hi,
    I am not sure what I did to my footer, but for some reason it is breaking it up into 2 sections, which I do not want: https://biozphilly.org/

    can someone help me
    a) center on the first line the entire address info
    b) second line the copyright WITHOUT the wordpress icon

    thanks!
    Jeremy

Viewing 8 replies - 1 through 8 (of 8 total)
  • In your stylesheet, make these changes:

    #site-info {
    float: left;
    font-size: 14px;
    font-weight: bold;
    width: 100%;
    text-align: center;
    }
    
    #site-generator a {
    background: transparent;
    color: #666;
    display: inline-block;
    line-height: 16px;
    padding-left: 20px;
    text-decoration: none;
    margin-top: 16px;
    }

    It should then look like this:

    View post on imgur.com

    Hi Jeremy,

    to center the text on the footer place this in your child css file:

    #site-info {
    text-align: center;
    }

    Not sure what you mean with b). Could you please clarify?

    Thread Starter jmerr59944

    (@jmerr59944)

    WPranger,

    thanks for the quick response. nothing changed. wouldn’t something needs to be changed in my footer.php file?

    Jeremy

    Thread Starter jmerr59944

    (@jmerr59944)

    Kaniamea,

    Thanks for the response. Per WPranger (Answer before you) I tried the text align-center and nothing is happening.

    somehow my footer is split almost like a table and I believe that’s causing the problem, but im not sure what the actual problem is.

    in regards to “b”. I want the copyright info on the line under the address WITHOUT the wordpress logo next to it.

    Jeremy

    Thread Starter jmerr59944

    (@jmerr59944)

    there seems to be some footer sidebar and Im not sure how to disable it.

    There’s an error in your child theme’s css. Try fixing that:

    #main {
    	clear: both;
    	overflow: hidden;
    	padding: 0px 0 0 0; <--- no closing brace
    
    .entry-title,.entry-meta{
    display: none !important; }

    Thread Starter jmerr59944

    (@jmerr59944)

    that did it!

    thanks…if I want to make the address bold or larger, do I add something to the stylesheet or just <b> </b> to the footer file?

    That’s being applied by the last line in the child theme css. It’s:

    #site-info { font-size: 12px; font-weight: normal; }

    Just remove the font-weight: since it’s set to bold above and then amend the font-size: to whatever you want.

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘no sure whats wrong with my footer’ is closed to new replies.