Closed (fixed)
Project:
Marinelli
Version:
7.x-3.0-beta9
Component:
Code
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Issue tags:
Reporter:
Created:
14 Apr 2011 at 14:16 UTC
Updated:
25 Nov 2019 at 12:54 UTC
Jump to comment: Most recent
Comments
Comment #1
shruti.sheth commentedHi,
The following can be one of the ways for adding the columns regions in footer area.(example here : 4 columns)
1. Add the following code in your .info file
2. Add the following code in your page.tpl.php inside the footer
3. In your layout.css add the following css code to give equal column widths to each footer region.
** Note variable widths can be given to these footer columns depending on the requirements by giving different widths to each #footer1, #footer2, #footer3 and #footer4.
Hope this helps!
Thanks.
Comment #2
shinz83 commentedI had some success when I made the final lines looks like this....
Comment #3
shinz83 commentednow if I could only turn off "blockhide" for these... any help?
Comment #4
Vishambar commentedHi, I am new with dural having follwing problem during save my view. Please help me out form it
DOException: SQLSTATE[42S02]: Base table or view not found: 1146 La table 'vui.cache_views' n'existe pas: DELETE FROM {cache_views}; Array ( ) in cache_clear_all() (line 168 of F:\wamp\www\Ventures\includes\cache.inc).
Comment #5
alvarofst commentedExcellent, it works
Comment #6
omrmankar1. Add the following code in your .info file
I've created a method to do five columns using bootstrap 3. It requires you to nest two columns of with col-sm-7 and col-sm-5, then inside of the col-sm-7 three columns of col-sm4 and inside the col-sm-5 with two columns of col-sm-6.
There there are two column width overrides on the outside two columns to make sure the columns end up with equal width.
2. Add the following code in your page.tpl.php inside the footer
4. Add code in responsive CSS file
css code
I usually use my columns as col-sm- as I usually let things collapse after the small breakpoint. That's why I used the media breakpoint to allow the columns to go full screen after the small tablet size..
Comment #7
omrmankarComment #8
omrmankarComment #9
omrmankarComment #10
omrmankarComment #11
bhumikavarshney commentedAfter adding all the regions in footer just need to give "Width" to all the regions in the footer.
If you are adding 4 footer regions than css will be modified like this:
#footer1, #footer2, #footer3, #footer4 {
float: left;
width: 25%;
}
Comment #12
gaurav.kapoor commentedComment #13
gaurav.kapoor commented