CSS question - changing title size.

I am having an issue changing the template title font size in the css. In the css, I changed the .SAPBEXtitle font-size to 28. Yet, the size remains the same it was (8). Do I need to change any thing else? Thanks.

Hi Uday,
Have you emptied the global cache? See this thread for details:
Re: Refresh new BEx web content
Hope this helps...

Similar Messages

  • Aligning and Changing Title Size

    Two questions regarding text size in iMovie (I have the 6.0.3 version). I'm sorry if I'm misunderstanding the program or if the questions are very simple, but I've never used iMovie before and haven't had any luck finding answers elsewhere.
    I am making a slideshow consisting of pictures alternating with black slides with still white text.
    1) Under the Titles tab there are two bars to type text into. Lets say the information I need on the slide is more than one line, so I divide it up between the two bars. The second line becomes, for some reason, smaller than the first, even if it has less words. Why is this and can it be changed so that each line is the same size? Also, what if I want more than two lines of text on one slide? When I added another set of text bars it divided the slide into two parts, with the second section of text appearing after the first, so that didn't help.
    2) The arrows where you are supposed to be able to align the text anywhere you want are not highlighted and therefore I can't use them. How do you get them to work?

    You are actually in the im08 forum and you may get better answers by posting there.
    1) The title you are using assumes a main and sub title structure, other titles display differently, indeed there are titles that you can simply insert a block of text (as many lines as will fit on the screen), although off the top of my head I'm not sure which titles they are.
    2) Good example of posting in the correct forum, I don't use im6 as much as I used to and am not exactly sure about the arrows you are referring to. Sorry. Sure some of the other regulars here do though.

  • Cannot Change Title Size

    The text size itself is fine (any smaller and I can't see it hehe), anyhoo there's too much text to fit into the small box it provides me with, I've tried right clicks and edit and a few other options but no help really. Is there any specific way to change text 'box' size to allow more text to fit into viewable range? (I can put the two sentences into it, they just won't appear)

    I'm very confused mostly because I always expected iMovie to be a quality editing tool, and really, my text boxes don't seem to be able to lot more then one line of text in, I can't 'easily' adjust the volume of my background music beyond the first two clips ( Every single clip is set to duck 'all other clips' to 30% normal volume, which works wonders on the first two clips but after that it's like there was a 40 second fade in and it explode with music again and there's no ducking I can do to it anymore I guess), I still love my mac, but, is there perhaps a more manageable movie editor for macs? Or even a guide on how to do everything I need? I feel like there should just BE a button 'Add background music' with the option to 'Adjust background music in portions or in full?'
    -shrug-
    Any help I can get would be greatly appreciated as I am practically tearing my hair out at not being able to adjust the volumes and fix my title box limit size.

  • Logic Pro 9 - Change Title Size in Music Score

    Hi,
    I've been using Logic Pro 9 to create music score. After creating the score, I noticed that the title appeared on every page. However, I want the title to have a larger font on the first page compared to the ones in the proceeding pages. Is there a way to do this? Or does the title font size have to be the same throughout the entire score? Once I change the font for one page, all the other pages also change.
    Thanks!

    I would suggest you try Text Styles:
    http://help.apple.com/logicpro/mac/9.1.6/en/logicpro/usermanual/#chapter=31%26se ction=13
    ….and mouse over to  >>Learning About Text Styles<<
    Have a nice day!

  • 2 questions - change image size within print cell, and saving print template w/ specific images

    Hi,
    Searched the forums for the answer to these but couldn't find much.
    1. Is there a way to change the image size within a cell (under print module). For example, zoom in 140% on a a specific image but still have it within the original cell size?
    2. Say I create and fill in an elaborate print template with my images - is there a way to save the FILLED IN version of the template to edit at a later time? For example if I wanted to load it back up w/ all the original images layed out in the print template, but maybe change a few and resave as jpeg?
    Thank you!

    Hi
    I'm not sure but maybe you can use a rectangle to hold the .ai image, resize the rectangle and fit proportionally the image inside it
    hope this help
    Eli

  • Is there any way to turn off the auto formatting in Pages?  I just want to type a letter and add pictures and titles, and Pages keeps changing font sizes and doesn't let me "Do it my way".  I HATE this!

    Is there any way to turn off the auto formatting in Pages?  I'm using a blank document, so I figured I could write my letter and add pictures any way I wanted to.  But NO!  Pages keeps changing the font size!  I typed a large heading as a title, and when I try to change to a smaller font for the body of the letter, it changes the size back to the larger size!  I am getting SO FRUSTRATED!  I've spent over an hour trying to get the stupid program to let me just type my letter!  Can anyone help?

    The only one left is the "unsubmitted text" dialogue, which would not be a problem if I were not a Facebook user; after updating the "Richard is..." field (which does not require a manual submit to actually send) I get the above message. This is obviously Safari just not realising that the info has been sent and is therefore (I imagine) one for Apple themselves to answer!!
    You're welcome Rich. Glad to help.
    Not being a Facebook User, I'm not sure how to respond to the error situation. However, this would be something to report to Apple as a bug via the Safari Menu. First, open to the page in question, then select "Report Bugs to Apple".
    Mahalo for the and Aloha from Big Island.

  • Change Font size of Query Title in PDF Output

    Hi Experts
    I want to change font size of Query title when its exported to PDF format .
    I change the text properites     to  Header size 1 ,  but still its not reflected in Output in PDF .
    Any suggestions,
    Regards,
    Jawad

    Hello Jawad,
    Please tell me the solution for this.

  • Easiest way to change font size/color with CSS?

    I've never used CSS before; I need to know how to change the font size and color using CSS, since it seems to be the only way to do it now. Sometimes I just need to change the font just for a few words, or a line here and there. Not necessarily page-wide, you understand. Is there a step-by-step process showing the simplest way to accomplish this? I'm not a web developer or professional designer, nor do I want to be. I just use DW to build simple web sites for personal use. I don't build using HTML - I solely use DM's GUI functions. And I'm also trying to teach my nine year-old how to start out page-building. I certainly hope that something as simple as changing font size doesn't require one to buy a book to learn HTML, which seems to be what a lot of people are telling me. Thanks for any assistance.

    Easiest is not always the best way.  You must learn the fundamentals. 
    CSS
    /**this styles all paragraphs in your site**/
    p {
    font-size: 18px;
    color: #000;
    /**This is a class.  Classes are re-usable**/
    .red {
    color:red;
    font-weight:bold;
    HTML:
    <p>This is a normal paragraph</p>
    <p class="red">This is a red paragraph</p>
    <p>This is a normal paragraph with <span class="red">some red text here</span> but not here.</p>
    If you're going to teach your 9yr old how to build web pages, start with the links below.
    There's no point in teaching your child bad habits that will have to be unlearned later.
    http://www.html.net/
    http://w3schools.com/
    http://www.csstutorial.net/
    http://phrogz.net/css/HowToDevelopWithCSS.html
    Nancy O.

  • How do you change image size in the title window?

    I just changed operating systems to Windows 7, which meant that I had to re install Premiere Pro CS4. I am now working on a 64 bit system. Might not make any difference, but thought I would give you the specifics just in case.  When I pull up the title window to add a title to my clip, the image is about the size of a postage stamp. How do I increase the size of the image in that window?

    Thank you again for responding Hunt. I did find out what what was happening.
    I had to reinstall the program on my computer. I just upgraded to Windows 7, and I now have a 64 bit system. When I booted up PPCS4, I assumed that my settings would be the same as they were before when I had Vista installed and didn't bother to check them when I started a new project. Well, they were not. I also added a TV tuner card to my computer. I now can watch HD TV on my computer. I suppose that it is possible that somehow PPCS4 noticed that, and set my default settings to HD, rather than NTSC DV. I just merrily went along clicking the OK button and started editing. When I start a new project now, I select NTSC DV and the Title window works just fine, and exactly the way I expect it to.
    I just received Jeff Bellune's book Adobe Encore DVD 2.0 in the mail and will be totally immersed in Encore studies today. With all of his children, I don't see how he had time to write it, but I'm glad that he did. I also ordered a book entitled Designing Menus with Encore DVD. I know that it was written for an earlier version than CS4, but I will trust what you said about that. Many things are the same with some minor variations due to upgrades in the program. The basic ideas don't change, but how you accomplish them can, and usually do over time.
    Terry Lee Martin
    Date: Mon, 17 Aug 2009 16:04:16 -0600
    From: [email protected]
    To: [email protected]
    Subject: how do you change image size in the title window?
    Welcome to the forum.
    That is an odd one. The Title should be the same Frame Size as your Project/Sequence. What is it's Frame Size? Also, are you perhaps doing a Title based on an older Template, that was done for a different Frame Size?
    What happens if you choose Title>New Title>Default Still?
    Good luck,
    Hunt
    >

  • Changing the size of a background on Question Slides

    Hi All,
    I have a Question Pool and I would like the background of the slides to be the same as one i use for a ppt presentation. I have copied the background and used the 'Paste as Background' option you get when right-clicking. It pastes the image but the image is smaller than the slide itself. Does anyone know how to change the size of the background so that it fits the size of the slide?
    Thanks.

    Hi there
    Okay, so it would seem to me that you may not fully understand Captivate and resolutions. So heres the deal.
    It appears that you are expecting the image to stetch to fill the entire computer screen. You stated you cannot get the image to size beyond 1440 pixels. Well, this is because your project is sized at 1440 pixels.
    Remember, the Captivate movie will usually be played back to the viewer from inside a web browser. Normally you want the movie size to be smaller than the surrounding browser. Like this:
    In the example above, the White part of what is inside the browser may be the width of the Captivate movie.
    Does this make better sense?
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcererStone Blog
    Captivate eBooks

  • Why won't title size won't change in iMovie 10.1

    why won't title size won't change in iMovie 10.1

    Please check Help >> System Info to find your catalog's location. Close Organizer. Go to this location and within the catalog folder, rename the thumbs.5.cache file to say thumbs.5.cache.old.
    Now relaunch Organizer and let the thumbnailing complete. You should get your thumbnails back in no time.
    Thanks
    Andaleeb

  • 2 Questions: Changing the file name /title, View albums in Outlook

    Hi,
    I'm considering upgrading to iLife06 but before I do I want to know if it resolved my 2 biggest problems with iPhoto.
    1) Can you finally change the tite/file name of a picture in iPhoto and actually find that picture with the "new/changed" title using Finder or Outlook Express. Its really frustrating to only be able to see the descriptive title in iPhoto. It makes it unreasonably difficult to attach a picture to an email. You have to do it from iPhoto which means I have to switch out of Outlook and then to iPhoto.
    2) After you create all these albums in iPhoto can you see the albums in either Finder or Outlook Express. Once again attaching pics to an email is a pain if I have to remember that the exact date the picture was taken.
    Please let me know if these issues are resolved or if there is an easy work around.
    Michael

    Hi Michael,
    1) No
    2) No
    The easiest way to do it is open iPhoto and File>export the photos you want to use.

  • How to change font size in dreamweaver

    hello?  this is really a bit of overkill for a simple question.  could someone please help with this?
    and while we're at it there's a fly i want to kill with a sledge hammer

    If by changing font-size you mean in your web pages, the answer is use CSS with values in px, em or %.
    body {font-size: 100%}
    p {font-size: 1em}
    h1 {font-size: 3em}
    h2 {font-size: 2.5em}
    h3 {font-size: 2em}
    h4 {font-size: 1.5em}
    and so on....

  • Change font size in an XML file

    I bought a template and this page is the text on the opening
    page. The Title is bold and a bigger font than the next paragraph
    and the first line of the data is what I really want in the tittle
    but the line is a bit to long so I'm looking to change the size of
    the font. I see no code that makes the tittle bold and a bigger
    text so i'm thinking it must be tied to the template. Please if
    someone can help I would be greatly appreciated.
    It's been 15 years since I messed with a web page. Also one
    last question. Look at my site dkdaniels.com and the bottom of the
    first page left side where copyright is at there is a file called
    settings.xml and there is a place to change that info which I did,
    but also on the right it sasy designed by and your suppose to be
    able to imput your name and I see no such info in the settings file
    so does anyone know where one can edit that?
    Many Thanks
    DK

    .oO(dkdaniels)
    >I bought a template and this page is the text on the
    opening page. The Title is
    >bold and a bigger font than the next paragraph and the
    first line of the data
    >is what I really want in the tittle but the line is a bit
    to long so I'm
    >looking to change the size of the font. I see no code
    that makes the tittle
    >bold and a bigger text so i'm thinking it must be tied to
    the template. Please
    >if someone can help I would be greatly appreciated.
    An XML file alone is pretty useless. For the Web there
    usually has to be
    a script or a stylesheet to turn the XML into HTML which a
    browser can
    understand. So check that stylesheet or whatever else there
    might be.
    > It's been 15 years since I messed with a web page. Also
    one last question.
    >Look at my site dkdaniels.com and the bottom of the first
    page left side where
    >copyright is at there is a file called settings.xml and
    there is a place to
    >change that info which I did, but also on the right it
    sasy designed by and
    >your suppose to be able to imput your name and I see no
    such info in the
    >settings file so does anyone know where one can edit
    that?
    There's no content on that site. All I get is a blank/black
    page.
    Micha

  • How do I change the size of a Spry Input Text field box?

    I created an email reply box, and then I created a reply message box. How do I change the size of each box independantly of each other? All I have is one set of Spry CSS rules!
    Oh, and the Working with the Validation Text Rule widget file in the Help Resource Center only covers changing the background color - Ugh!

    If I understand your question, you want to change the size of the input field that has spry validation?
    Spry has nothing to do with it, add a size to the field
    <input name="textfield1" type="text" id="textfield1" size="45" />
    <input name="textfield2" type="text" id="textfield2" size="25" />
    Gary

Maybe you are looking for

  • POS XI POSDM integration

    Hi Experts,                      I am into POS XI POSDM integration . My queries are,    1. Is there any specific forum in XI where I can get in touch with those, who have undertaken the following type of integtarion.     2. My scenerio is File 2 XI

  • Remote Supervisor Adapter II SlimLine Firmware Update for TD100

    According to Lenovo document 54Y6198 I should be able to go to http://www-947.ibm.com/systems/support/oem/td100.html and download the firmware updates for the Remote Supervisor II Slimline adapter we purchased for our new Lenovo TD100 server (Model 6

  • Sending mail problem

    Here, on a unique iMac: Under user X session (admin), i can't send message with Mail App. But, on user Y session, i can. Both users use the same SMTP config! Anybody understand something? Or can resolve this issue? Thank you... Chris

  • Firefox crushes when I try to connect to youtube

    Everytime I try to conect to youtube firefox crushes. Same thing with Internet Explorer. The only browser that works is Chrome.

  • Trying to run a JSF page whose output i am getting from a Web Service

    Hi I am trying to run a JSF page containing a simple button and a outputText. On clicking the button ,the outputText field is populated with a value from a web service. This page sometimes it runs fine else, on pressing the button nothing happens. In