scrollbars around tag_pagecontent

Hello

I have a client who asked me to put bars scrolling around the content on a page, so the page is not beyond a certain length. (I know, but the customer is always right).

Iframes and framesets insert one Web page inside another, and I don't want to do that. Frameset tags because they introduce the contents of another Web page, so I have to have two Web pages for each page on the site, one for content and the other for layout tags and page frameset and I'd rather not iframes. I don't see how I could use templates of BC with this scenario.

In the BC templates for this site, I would like to put a tag html around the tag_pagecontent tag to render content within scroll bars on the live pages.

I tried to use the < textarea > tags, but which makes the HTML inside the tag_pagecontent on the page Web of BC, instead of the content itself.

It was a little weird, like the example I found on the net renders the content correctly, but it does not work in a model of BC if you put around the tag_pagecontent tag in the template.

Does anyone have any ideas or suggestions on how to do?

I told the customer that I look at it.

Mary,

Do a test page with a div with red background element and set the position and the height of it so that is fixed. Then another inside it with a width that is a little less.

Then on the elements of the container add CSS-

Overflow: scroll;

Have a play with it.

Let them know what they are doing will make them not pleasant to use for mobile visitors and people with big screens. Tell them that it is ok for their view that their visitors will have harder time using their site accordingly.

Normally scares them off the power or if you implement and they get the first returns will take it off soon.

Tags: Business Catalyst

Similar Questions

  • Cf11 ColdFusion.Window.Create has no scrollbars

    Cf11 ColdFusion.Window.Create has no scrollbars. I even tried overflow: scroll in the attributes of the tag and cannot operate.

    I'm on a Windows R2 server in 2012.

    < cfajaximport tags = "cfwindow" >

    < TABLE >

    < b >

    " < TD > < img border ="1"src="/Utilities/Images/Icons/folders.ico "onclick =" ColdFusion.Window.create ('Window123', 'Sample window','http://www.blueprintcss.org/tests/parts/sample.html', ) "

    {x: 100, y: 100, height: 500, width: 500, modal: false, liquid: true,}

    Draggable: true, resizable: true, Center: true, initshow:true, refreshOnShow:false,.

    (MinHeight:200, minwidth:50, overflow: scroll}) "/ > < table >

    < /TR >

    < /table >

    Not sure that the Window.create function takes in charge the attributes of overflow.

    Easier work around, I can think about is to use the cfwindow tag and then use the JS to open it. Depends on how the entire page meets in your project.

    To be honest, you will be much better by avoiding the Coldfusion UI functions and using something like jQuery. Much better and easier to handle support.

  • It's 2010 - we have solved the problem "centered layout vs scrollbars" yet?

    An unfortunate side effect of browser scrollbars being regarded as 'in-line' - in other words, the window is reduced when a scroll bar appears - is only centered layouts 'jump' a few pixels to the left when a page requires a vertical scroll bar.

    Googling the subject have given solutions that all centered around from overflowing the body of 1px height (by adding a margin 1px bottom) to force the presence of a scroll bar at any time.

    Now, this is not such a disaster of a solution if at least the scroll bar is grayed out. Such, the solution of 1px margin actually creates a live real scroll bar that scrolls... 1px. Leaving the Web Designer to watch as he has not done his math correctly.

    This, to me, is an unacceptable solution. So I was wondering if there are other more creative out there.

    HTML {overflow - y: scroll ;}

    This CSS will solve your problems by forcing pages to have a gutter of a scroll bar (if it is a scroll bar).

  • Scroll to a spark application wo / "permanent" scrollbars

    I just found out that my applications don't get scrollbars in the browser if necessary is because Flex spark applications does not advance unless you put a scroll around the whole of the application.  It's very upsetting.

    What do the other people to solve this problem?  Without scroll bars on the browser seems extreemly limiting.  Ideas, advice, options would be appreciated.

    Thank you.

    If you want the browser scroll bars, change the html template and set the size

    demand is greater than the SWFObject.

  • Multiple instances of an object-oriented ScrollBar?

    Hi everyone, Ive went through the tutorial-oriented Scrollbar object on gotoandlearn.com. His works very well and I have several buttons inside the moveclip, he lives inside. The problem occurs when I create a new one on the same page. I put a 1 frame and the other on the 5 framework so that I can choose a 'category' and the scrollbar movieclip changes to the corresponding keys.
    Ive duplicated video clips and changed bodies accordingly. I get these errors in the exit reading my swf Panel;

    TypeError: Error #1009: cannot access a property or method of a null object reference.
    at as3_movieplayer_fla::MainTimeline/frame1()

    and when I click similar to the second category, it comes up with this error.
    TypeError: Error #1009: cannot access a property or method of a null object reference.
    at as3_movieplayer_fla::scrollbox_1/thumbUp()

    Not really sure what im doing wrong - or even what that means!

    Here is the code of my layer main actions;

    stop();

    //buttons

    btn_advertising.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandler);
    function mouseDownHandler(event:MouseEvent):void {
        gotoAndStop(1);
    }

    btn_corporate.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandler2);
    function mouseDownHandler2(event:MouseEvent):void {
        gotoAndStop(5);
    }

    //video player script
    function videoOne(event:MouseEvent):void{
       vidPlayer.source = "flvs/ib_enginuity.flv";
       }
    function videoTwo(event:MouseEvent):void{
       vidPlayer.source = "flvs/ib_blists_hill.flv";
       }
    function videoOneCorp(event:MouseEvent):void{
       vidPlayer.source = "flvs/ib_explore_enjoy.flv";
       }
    function videoTwoCorp(event:MouseEvent):void{
       vidPlayer.source = "flvs/ib_great_year_visit.flv";
       }
      
    //text script
    function button1text(event:MouseEvent):void{
       textBox.text = "Ironbridge - Enginuity";
       }
    function button2text(event:MouseEvent):void{
       textBox.text = "Ironbridge - Blists Hill";
       }
    function button1CORPtext(event:MouseEvent):void{
       textBox.text = "Ironbridge - A Place to Explore and Enjoy";
       }
    function button2CORPtext(event:MouseEvent):void{
       textBox.text = "Ironbridge - A Great Year to Visit";
       }

    //event listeners
    scrollbox.content.button1.addEventListener(MouseEvent.CLICK,videoOne);
    scrollbox.content.button1.addEventListener(MouseEvent.CLICK,button1text);
    scrollbox.content.button2.addEventListener(MouseEvent.CLICK,videoTwo);
    scrollbox.content.button2.addEventListener(MouseEvent.CLICK,button2text);
    scrollboxCorp.content.button1Corp.addEventListener(MouseEvent.CLICK,videoOneCorp);
    scrollboxCorp.content.button1Corp.addEventListener(MouseEvent.CLICK,button1CORPtext);
    scrollboxCorp.content.button2Corp.addEventListener(MouseEvent.CLICK,videoTwoCorp);
    scrollboxCorp.content.button2Corp.addEventListener(MouseEvent.CLICK,button2CORPtext);


    and also the code of my layer actions inside my movieclip that is located on the frame of 5;

    import caurina.transitions.*;

    var yOffset:Number;
    var yMin:Number = 0;
    var yMax:Number = sb.track.height - sb.thumb.height;

    sb.thumb.addEventListener(MouseEvent.MOUSE_DOWN, thumbDown);
    stage.addEventListener(MouseEvent.MOUSE_UP, thumbUp);

    function thumbDown(e:MouseEvent):void
    {
       stage.addEventListener(MouseEvent.MOUSE_MOVE, thumbMove);
       yOffset = mouseY - sb.thumb.y;
    }

    function thumbUp(e:MouseEvent):void
    {
       stage.removeEventListener(MouseEvent.MOUSE_MOVE, thumbMove);
    }

    function thumbMove(e:MouseEvent):void
    {
       sb.thumb.y = mouseY - yOffset;
       if(sb.thumb.y <= yMin)
          sb.thumb.y = yMin;
       if(sb.thumb.y >= yMax)
          sb.thumb.y = yMax;
       var sp:Number = sb.thumb.y / yMax;
       Tweener.addTween(contentCorp, {y:(-sp*(contentCorp.height-masker.height)),
                            time:1});
       e.updateAfterEvent();
    }


    Please help me iron these problems!

    Thank you very much
    Dan Williams

    Unfortunately, I'm not getting errors after I added the name of the two instances and clicking around while in this article.

  • What can be done with a loose seal around the screen?

    The thin seal around my mac pro screen has come loose.  What is the solution to be tied?

    Just what Mac Pro model you have?

    You have posted in the forum Office Mac Pro and the office is not equipped with a screen

  • Back to 'Vanilla' after messing around with Triple Boot

    First of all, you should know, I wonder a "software-handyman' - I LOVE messing around with my MacBook startup files, and sometimes I'll even an exaggeration with which. At the moment I'm running on a bootloader custom (refined) installed on am modified EFI, who manages my boot of trial between macOS 10,12 GM, 10 Windows and Linux of Kali. All in all my disk is divided into about 6 different Partitions (HFS + Journaled, NTFS, Linux Swap and a little more) which are listed on a hybrid MBR made by BootCamp and modified by me GUID Partition Table. (Phew)

    Don't get me wrong, I'm pretty good in this kind of things, everything is (still) works very well. My problem is, I kinda lost the overview of this 'universe', and - oddly enough - I'm also at the point where I lost the motivation to administer it. And that leads to my question:

    What is the best and cleanest way to get from one set to update EFI, a custom Table Partition, 6 different Partitions (and probably a few others) towards a functional, simple, system, like that of a Mac new, just bought.

    As said, I'm on a MacBook Pro mid-2014, GM Sierra (Build 16A313a)

    I appreciate all forms of assistance.

    Thank you

    A "software-handyman."

    What to do before you sell or give away your Mac - Apple Support

    How to reinstall OS X - Apple support

  • How can I work around subscribing to music Apple MacBook?

    Ive updated my itunes and I get this popup to subscribe to the Apple's music which I don't want. because of this I cannot preview any track on itunes. a way around this?

    Try this: go to preferences, then Restrictions and check the box to Apple's music.

  • I have a strange problem with my RAM supported by installers. When I check the activity monitor, 3 installers are open and they start around 80 MB memory RAM used for about 7 or 10:08 minutes or so.

    I have a strange problem with my RAM supported by installers. When I check the activity monitor, 3 installers are open and they start around 80 MB memory RAM used for about 7 or 8 concerts after 10 minutes. I have to force them to quit, but I don't know what I am closing or why they open in the first place. Applications downloaded on iTunes?

    In addition, the Console has opened with the same message several times, but I don't know what that means.

    Any help would be appreciated.

    Hello

    The last is a picture of the Terminal window.

    Just because it lists 'Console' does not mean that it has nothing to do with this application.

    You have not said why or what you're trying to install so I can't help with that.

    You can use the activity monitor to leave their.

    After you select an item, use the X in a type of stop sign icon and confirm force quit.

    21:36 Thursday; September 15, 2016

     iMac 2.5 Ghz i5 2011 (El Capitan)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro (Snow Leopard 10.6.8) 2 GB
     Mac OS X (10.6.8).
     iPhone and iPad (2)

  • Check around the mouse on the screen

    Is it possible on Mac to save the area around the mouse when recording screen, exactly as they do in this video?

    https://youtu.be/3aDRBiGoriI

    First to something similar, but the mouse is not retained in the center of the recorded area. IceCream can do, except with the Mac version... I've read several times that Camtasia has this feature, but I can't (I downloaded trial for these 3 applications versions, would it not be a limitation?).

    Thank you!

    FWIW, there is a program called Screenflick which is supposed to be able to follow the mouse. Never tried it and don't know if it's compatible to El Capitan.

  • you work around my decision of not to download the new version?

    You work around my decision of NOT to download new versions of firefox?

    I will never put firefox until the vault of Norton password will work in it. All of a sudden it disappeared from my browser. It happened the other day on my laptop too, and I had not updated this version of firefox either. THAT'S HAPPENED?

    TOO GET ALL MY SELECTIONS TO CANCEL REQUESTS CONSTANTS FIREFOX DID UPDATE?

    PLEASE LET ME KNOW AS SOON AS POSSIBLE - NOW COULD BE GOOD AS I CAN'T GET MY NORTON BACK VAULT PASSWORD!

    You'll keep using Firefox 40.0.3, who is from August 27, 2015, so I do not think that your Firefox put up-to-date.

    What does not seem to be updated is your Norton Safe identification - extension version 2015.5.6.76 is November 3 release. This version is supposed to be compatible with Firefox, 40-42, but many users reported glitches.

    A workaround mentioned on the forums of Norton is after the launch of Firefox, to launch a second window by using Ctrl + n, and the Norton toolbar must be visible in the second window. It works for you?

    If this is not the case, unfortunately, he can wait some time before Norton to end its compatibility fixes.

    See:

    As you can imagine, none of us are going independent with change your security software. Symantec is the only person who can solve this problem.

  • Disabled applications with marked cross circle around him

    I got the application Parallels on my Macbook Pro. Suddenly, an update alrert came when I tried to launch parallels. I hit accidentally YES. It was updated and now I need to enter the activation key once again, that I do not have access to.

    So, I tried to restore the image of Time Machine application (just app restore but not the restoration of the whole image).

    Now I can see the icon of the parallels application with a gray cicrle crossed on this subject. I can't launch the Parallels. Also I can't get the activation key if I reinstall parallels.

    How to fix the restored application?

    Also another question is, my timemachine showed some images of backups, but when I rebooted my macbook, I lost all my previous bodies timemachine.

    Now, I am in a position to fix my parallels application, but may not be bale to do.

    Please, help me to understand:

    (1) why an application gets this circle crossed out around her? and how to fix it without reinstalling.

    (2) why I lost all my images TimeMachine on restart the Macbook?

    Thanks in advance.

    (1) the version of the application is not supported on your current operating system.

    the latest compatible version is V11

    http://www.parallels.com/products/desktop/?utm_campaign=sitelink & gclid = CIaxlbL3q s4CFQNsfgodtAcIfg

    If you purchased previous versions of the software, the key to series may be obtained by communicating directly with them.

    If you do not have a key that you will need to buy a newer version of the software or to restore your computer to an instance where he worked under your operating system through Time Machine

    (2) you follow the instructions of apples? If so, what are your light

    Use Time Machine to back up or restore your Mac - Apple Support

  • Firefox for android mobile phone said app can access the following on your phone... take pictures and videos? Is there a work around? If not have to uninstall.

    I have Firefox for my laptop and wanted to use it on my phone Android mobile phone. When I saw under permissions that the application can access photos and videos and can take photos and videos that seemed very odd. Does anyone know of a work around to keep the app to take photos and videos without my permission? I do not want to uninstall but can allow the intrusion of privacy.

    We have a help article about why this permission is here: how Firefox for Android uses the requested permissions?

    Specifically, some sites may give you the option to attach or embed an image directly from the camera instead of going through a folder of pictures already taken. In order to support this feature, Firefox requires permissions to access the camera. However, according to this article, Firefox will ask your permission before leaving the site to use the camera. I don't think I have ever seen this in action.

  • I bought a Macbook used, and now I can't update iMovie, iPhoto and iTunes without apple ID of the older owner how can I work around this?

    Hey everybody,

    This is my first post. A couple of years, I bought a used Macbook. I never did update (it is so long and then I decide to Watch youtube videos... it is not used for work or school). So now, I've updated the Yosemite and I want to get everything updated and it requires that I put a password of the former owner apple ID to update iTunes, iPhoto and iMovie. How can I get around this without reformatting and losing thousands of photos and all my files.

    Thank you guys.

    If you are the legal owner of the computer, but if the software you want is owned by another user is not yours. You cannot add any other purchases to your ID. You own, or that they are.

    backup with time machine

    move all your data in the folder user to an external drive or a flash drive is formatted in a format not mac or by checking the box "ignore this volume permissions" in get info of this device.

    do a clean install of the operating system

    create a new administrative account

    the Time Machine restore requests

    transfer your data from external sites back to the new account.

  • How can I get rid of the right scrollbar being all the time?

    Using Firefox on Windows 8, a Web page that contains a frame that has a long text that it displays a white scroll bar. The same page does not display the scroll bar when using Firefox on Mac. I tried a number of things inclucing enter topic: config before turning off the always show scrollbars entry but nothing seems to work. In other browsers I've tested no scroll bar is still present on this Web page. Does anyone know of a way I can have this scroll bar does not appear except when the text is scrolled? Thanks in advance.

    Two thoughts:

    (1) later or maybe the last two versions of Mac OS X have a feature at the level of the system that fades the scroll bars if you don't use them and then show them while you are scrolling, or something in that sense. We had complaints about it here from time to time.

    (2) Firefox does not allow to color scrollbars, as some other browsers for other browsers may have a transparent bar that corresponds to the background, but Firefox will use the default color and widgets associated with your theme, regardless of what tells the site.

    Any other browser on Windows also shows a scroll bar (attached screenshot).

Maybe you are looking for