Closed (works as designed)
Project:
Bootstrap Agency
Version:
7.x-1.0
Component:
Code
Priority:
Major
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
29 Feb 2016 at 15:38 UTC
Updated:
27 Apr 2018 at 08:50 UTC
Jump to comment: Most recent
Comments
Comment #2
blamege1 commentedI was having the same issue. Not sure if this helps, but I created a block view for the modal. Then I created a new region below the footer called Portfolio Modal and placed the block in that that region. So the Modal doesn't actually sit inside any of the other sections such as Content for example. It sits in it's own region. Like this
Comment #3
wavesailor commentedComment #4
wavesailor commented@blamege1 that worked - thanks
Some more detailed help for others:
Create a new region in file
bootstrap_agency.infolike this:regions[portfolioModal] = 'Portfolio modal'Add the region to the bottom of
page.tpl.phpfile as mentioned in #2<?php print render($page['portfolioModal']); ?>You then add your
buttonor<a>trigger code to the block where you want to display it i.e.Finally you add a new block (or block view) to the portfolioModal region which will contain your "modal code" i.e.
Comment #5
blamege1 commentedNo problem @wavesailor. Glad I could help.
Comment #6
jcnventura