Hi everyone,

Currently, the "All Rights Reserved" and Secondary Menu is a one line footer. Please help me make it two lines. Secondary menu on top, and then "All Rights Reserved" at the very bottom.

Take a look at the site here. http://www.monarchschool.org/

thanks.

Comments

nevets’s picture

Two things

a) Rearrange the block order on the block admin page so the menu comes before the "All Rights Reserved" (custom block).

b) Remove the float: left from the "All Rights Reserved" block.

kyle.nguyen’s picture

I tried your suggestion, but it didn't work. I found the css that looks like this:

.footer .col1{

float:left;

width:155px;

}

.footer .col2{

text-align:right;

float:right;

width:800px;

}

I assume the col1 is for the "All Rights Reserved" block and took out the float:left, but no change.

Both the footer block and secondary menu is in the "footer" region on the Blocks Administration page. I tried changing the footer block to the "page bottom" region but it didn't work either.

Any other ideas? thanks so much for replying.

VM’s picture

not sure how you are working with your CSS. based on 'didn't find' you are scanning the file instead of using a CSS tool. I highly suggest the CSS tool in your browser.

Had you utilized a tool you would have been able to inspect the blocks and found:

#block-block-1 {
    float: left;
    line-height: 12px;
}

The above is the custom CSS used to style the left block.

Now your job is to correct what you've already tested and work with the above after learning where in your browser to initiate its CSS inspector.

kyle.nguyen’s picture

I was definitely looking at the wrong CSS file. I followed your advice and used Google Chrome "Inspect Element" tool. I've found the right css file, "blocks.css" and made the appropriate changes. It looks exactly the way I want it now. Thanks so much!!

VM’s picture