Footer blocks

Posted in: Newspaper
Post count: 224

Hi!
I use 3 blocks footer and i’d like to place these blocks on the level, but now they are all float to the left. Could you help me with it?

Post count: 224

Forgot to write my site – http://www.balkonsami.ru

Post count: 6600

Hi,

Go to theme panel > footer and set it like this: http://screencast.com/t/2UI4BYwQ5aYu or chose another layout as you like.
Customize each footer column from appearance > widgets, like this: http://screencast.com/t/RRS3O3lSzJf

Thanks

Post count: 224

Yes, i’m using exactly this footer and 3 widgets, 1 widget in 1 block, but it looks weird on my site

Post count: 6600

Hi,

If where using this your footer html structure should look like this: http://screencast.com/t/omCZj3E1
In your case it doesn’t: http://screencast.com/t/zjItMEol6ZKG

Thanks

Post count: 224
Post count: 6600

Hi,

What theme version do you use? Please try to replace the content of you footer.php file with this code: http://pastebin.com/vM8zQpvZ and try again.
Please make a copy of the file before changing it so you can revert back to it if something goes wrong.
Also make sure your settings are saved. If not you have to increase the max_input_vars = 1000; value inside the php.ini file to max_input_vars = 5000;.
If you don’t have access to the php.ini file please contact the host administrator and let him know about this issue.
Hope this helps! Please let me know!

Thanks

Post count: 224

I’ve done it, but i didn’t help, unfortunately. Theme version is 4.2.2
It seems i found why it happaned. Long time ago i changed the width of my content part, so now .row-fluid .span4 width is not 30.3483%, but 24.3483%. I need it coz for my site basic content width is too narrow.
Looks like this is the reason.
How can i change width of blocks only for footer? Custom class or something?

Post count: 6600

Hi,

You can use this class: .td-footer-wrap to target just the footer.

Thanks

Post count: 224

Yes, but this is for the whole footer.
The footer consists from 3 blocks and i need to customize these blocks, to change their width in order to make them to fill all the width of footer.
These blocks in my html are <div class=””span4 wpb_column column_container custom>.
CSS for their width is
.row-fluid .span4 {
margin-left: 4.47761%;
width: 24.3483%;
}
But if i change the width, it changes the width of my sidebar. So i need to change only width of these blocks in footer. I added custom class to these conteiners <div class=””span4 wpb_column column_container custom>, but nothing is changing…

Post count: 6600

Hi,

Edit the footer.php file and add different classes for each footer section, like this: http://screencast.com/t/QrgrRFyQq
Use those classes to target and customize your footer’s section, like this: http://screencast.com/t/Z6xYyTUgId

.footer_1 {
background-color: red;
}

.footer_2 {
background-color: blue;
}

.footer_3 {
background-color: green;
}

Thanks

Post count: 224

I do the same thing and it works for changing background color, but it doesn’t work for changing blocks width
I use
.footer_c {
width: 30.3483%;
}

Post count: 6600

Hi,

Use this css: http://screencast.com/t/8T0WiQSS

.td-footer-wrap .row-fluid .span4 {
width: 30.3483%;
}

Thanks

Post count: 224

Great, thank you very much!

Viewing 14 posts - 1 through 14 (of 14 total)
The forum ‘Newspaper’ is closed to new topics and replies.