Posted by bodyblueprinter on January 22, 2013 at 2:28am
Hi,
I know AT is on the upcoming discussion list, but I have a site that is having some re-size issues. A footer view is not resizing and some embedded video is not re-sizing. I am looking for some tips or directions to look for answers.
www.toadalfitness.com
and
http://www.toadalfitness.com/locations/cabrillo-fitness
for the videos
Thanks,
Comments
Width 100%
I think the trick is to make sure you use:
width: 100%in the right places in the CSS like in:
http://drupal.org/node/1510526#comment-6075772
Perhaps some trial and error will get you there.
Contact: https://www.hook42.com/contact
Drupal 7 Multilingual Sites: http://www.kristen.org/book
Need to reset output in Views
About the footer: Right now it looks like you're using a view to create the footer. That view is outputting a table (with each of the addresses as a column in the table). AT won't re-size the table (it is it's own thing).
Instead change the format in in your view to: unordered list
Then set
.view-class ul li {display: inline; float: left;}
(where .view-class is your view-class)
This will show all of your addresses in a long list - is that what you needed?
K2
Tried the inline float
I think that because it is a block, this did not quite work. Which I recall as the reason why I went with the grid....I will keep at it though :) Thank you