Checkout Page Cancelling Font Styles

Business Catalyst Own template using adobe fonts.
All is fine until I load the checkout page and then the adobe fonts disapear site wide until I reload the site in the browser.
Site in Dev mode http://alchemiststea.businesscatalyst.com/index.htm
I have realised that this is happening as the checkout page takes the browser in to a secre zone, the sddress indicates https:// once your remove the s and go http:// the fonts are reloaded again. so I gues while in https:// secure zone the browser is blocking my styles as insecure content.
If anyone could help me resolve this I would be very grateful.
Many Thanks
Cas
Message was edited by: Cas1967

Your webfonts need to be coming from a secure server for them to work on secure pages. As long as the location supports secure connections you can change your links to use //  instead of http://. This means that the request uses the protocol specified in the browser and not dependent on the type of protocol you specified in the link. eg:
<link rel="stylesheet" href="http://fonts.website.com">
changes to
<link rel="stylesheet" href="//fonts.website.com">

Similar Messages

  • Please help! How can I change the font / text size for the checkout page? I asked Support and they sent me here- thanks in advance for your response.

    Hello everyone! I build an e-commerce shopping cart via BC and integrated it with a muse website as seen at sarahcosmetics .com
    Everything is great, but my clients clients are complaining they cannot see the text well once they're in the checkout page.
    I was able to enlarge the font in my Registration-Buy form in the Online Shop Layouts / Module Templates under the Site Manager. This helped enlarge the font size in the checkout form however my issue arrises on the next page when they have to enter their details like CC information name, address etc. the font is way too small and I'm not sure where to access the tools to enlarge that.
    If you could PLEASE help I would greatly appreciate it. I told my client I would handle it asap and I have no idea how to fix this.
    Thank you in advance for your help.
    Jessica

    This isn't possible yet in the current version of Fennec, but we are working on it. See https://bugzilla.mozilla.org/show_bug.cgi?id=590817 for details.

  • Create a new Font style format in pages

    I have looked very hard in pages and I cant seem to find a setting to change the default fonts and settings. I have just created a document with the settings I want and I saved it as a dummy that I just duplicate when I want to work with pages. Is there a way to create a new font style format so that you can just choose that style and get your settings? I just don't see how its possible that there is not a way to edit the default settings in pages...

    Folders & file management is a function of OS X. Here is an Apple video tutorial on using Finder in OS X.

  • Change Background and font style in Web Page Composer ?

    Hi,
    someone knows how change the background and font style/size of the web page composer ?
    or how to control  font size style and background of WPC page using CSS ???
    point will  rwrd

    Hi,
    We are on EP7 SP14 and WPC SP14 Patch 2.
    Changing the css files should work perfectly...
    Try changing these files under the KM Content:
        KM Content -> root -> etc -> Web Content  -> css
    These are some of the css files that I have modified :
    root > etc > wpceditor > css > runtime > sdn_general.css
    root > etc > wpceditor > css > runtime > content.css
    root > etc > wpceditor > css > runtime > sdn_apps.css
    In particular, change the sdn_general.css and it will be changed.
    It works for us....

  • How to change the font style for user profile information in My Profile page?

    Hello,
    In my profile page, user information is getting display as below:
    Name
    Title
    Department --> Would you please let me know how can I change style for Department ( Information Technologies) Attribute in this section ?
    Thanks and Regards,
    Dipti Chhatrapati

    Hi Romeo,
    I got your point and class I require to apply is as below:
    .ms-contactcardtext3 {
        font-family:
    Arial !important;
        font-style: italic !important;
    Thank you for your trick :) 
    But its getting apply to title as well as to Department - as above class is same for both fields , while I require to change the style only for the department.
    Any suggestions ? I have changed the same using Designer which works as per the need , however - I dont want to use SPD Tool !!!
    Bottom line : I Require different font style in Title and Department without use of SPD.
    Any suggestions/idea ?
    Thanks and Regards,
    Dipti Chhatrapati

  • Extra font styles on page

    Hi, I'm a new Dreamweaver user. I have one page that added a
    lot of font styles for the page as I was working on it. Most of
    them aren't being used. Can I delete them? I'm not sure how to do
    it. The url is:
    http://ellifolks.com/bearsandcritters.html
    Thanks.

    > Yes Dreamweaver has a habbit of adding styles which are
    not needed when
    > using
    > the properties bar.
    Better to say that inexperienced users adding font styles to
    their pages by
    using the Properties inspector will cause DW to add these
    unwanted style
    selectors. Once you figure out that this is the wrong way to
    do it, you'll
    not get those selectors anymore (as you state in the second
    paragraph).
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Sean022" <[email protected]> wrote in
    message
    news:g54q22$oeu$[email protected]..
    > Yes Dreamweaver has a habbit of adding styles which are
    not needed when
    > using
    > the properties bar.
    >
    > Rather than highlighting text in the design view and
    using the properties
    > bar
    > to style text, the trick is to create the styles for
    your text FIRST then
    > apply
    > them (style=blah) to your chosen text. This will prevent
    loads of style1,
    > style2 etc being created.
    >
    >

  • HOW CAN I CHANGE FONT STYLE IN INDEX PAGE FOR IBA?

    Hi
    Is it possible to change the font style in INDEX page for iBA?
    Naidu

    NO. In the index page. I figured out that we can change the space and text formate.
    I am preparing a bokk with 1 chapter and 13 section.
    SO, in the index page it is showing like 1.1, 1.2.......1.10, 1.11 so on; on the left hand side and page numbers on the right hand side.
    Can i take out the numbers on the left and have only the section name and page number?
    If so how?

  • How to discover all available font styles for a given family?

    I'm using InDesign CS3 and need to discover all of the available styles for any given font. I've found Application.Fonts.itemByName(), but this only returns a single font by the full name. Using ExtentScript in CS3 How can I ask for ALL font styles for any given font family (as displayed in the styles drop-down?)
    Thanks!

    hey,
    I was just searching the web trying to find why this piece of code:
    for (var i = 0; i <app.fonts.length;i++) {
         app.fonts[i]..... some other code
    take 4+ minutes to execute.
    app.fonts.everyItem().getElements(); did the trick, sweet!!
    However, I would like to ask you whether you know if there is some handout or some guide (possibly online page) for such advanced scripting...
    or how did you find this solution?
    thank you very much for this post, anyway
    regards
    jenda

  • Is there a way to apply all the font styles before importing the file

    Hi,
    I've some text as below in a text file that needs to be imported into InDesign.
    "Law of Civil Procedures"
    And in InDesign this is to be made bold. I want to know if there is a way to make it bold directly and then import it into InDesign, I'm asking this as I have approximately 200 pages that needed with all the font styles applied. This would be very helpful if i can first apply the font styles and then import it into InDesign.

    Hi Salah,
    Thanks for your Answer. I'm completely new to indesign, i'm basically an XSLT Developer. My question in brief is as below.
    We have to make books in InDesign, and the content we receive would be in XML Format and also an RTF file is given with same content, what we do currently is copy and paste the text in InDesign document and start formatting te content accordingly. But we are having huge volumes like more than 6000 pages and similarly we are having 8-12 vilumes, i want to know if we can get the styles directly in InDesign and start working on  them.
    For eg: we have the below content
    <para style="left"><num style="bold">1(1)</num>   <b>[Short title and commencement]</b></para>
    Here there should be a para created and the number should be bold. I'm really unable to understand how to do it. please help me with this. And also our vendors need the IDML file along with the PDF. please let me know how i can do this.
    Also please suggest me some good tutorials regarding this.
    Thanks.

  • Can I set iWeb to automatically use my font/style/size?

    Is there a way to get iWeb to automatically set the font, style and size that I want to use in my iWebpage? I want to use Optima. I went to the iWeb preferences menu but it does not mention fonts.
    Last night I had to first delete all the examples in the iWebpage templates and then, thru the Fonts window, I had to click onto Optima, and then Regular, and then the size. I kept thinking about how lovely it would be if I were able to set some preferences from a different source and have the program automatically do overwrites in Optima.
    — Lorna in Southern California

    iWeb doesn't remember your default choice like that
    unfortunately. Are you finding that you use the same
    template pages though? If so, you can just
    preconfigure one with your choice of fonts and text
    sizes. Then just keep it blank and use it as your
    "template" by 1) removing it from being displayed in
    the navigation menu and 2) by duplicating the page
    (select it in the organizer and right-click or
    control-click to select "duplicate").
    It's probably easier to just make the changes when
    you want.
    James, thanks, and hi. I will end up using the Photo Album and the Welcome templates the most. The Welcome templates I will use as top level theme hyperlinks to all of the examples of said theme.
    iWeb is a lot of fun.
    — Lorna in Southern California

  • CSS font style in main template. How to remove or change...

    Hi, made a boo boo the other day while messing with my spry menu bar from the main template. I was trying to change the font size on the sub-menu as the drop down had gone off the page. I was fooling around with it and inadvertantly changed/added several styles that were already being used on other pages throughout the site. For instance "style 19" used to be 24 pixels high and not in the main template. (right under spry assets styles.) Now it's there and every page that used this style is now showing VERY LARGE font as I somehow changed it to 113pixels. (type-o that I didn't realize was being saved and changing a style.)
    If that made sense to anyone, what do I do now? Do I go to the main template and change the size to what I know they should be then update all the pages, leaving "redundant tags". Do I delete the style altogeter from the main template?..not sure what that would do.
    and last, once I finally get it right, how do I upload these changes. Putting the main teimplate, css style sheet? Spry menu? all?
    Thanks SO MUCH
    Miserable in D.W. land today!

    Thanks, will be working on it today. That's what I needed to know. It sucks when you don't know what your'e
    doing and you can't speak intelligently to someone who does. So thanks for the layman's answer this time.
    What I can do is actually go back to the page in question, and I can see the "old" style 18 and what the size should be, then see the new one. So I will be able to tell what the old size was. These styles affected are mainly for colored font/names under our caddy girls. Each one might have her name in size 24 pixel font, in a different color depending on the page design. Long story short, is all the fonts that were 18 or 19 are now wrong..  and some other styles have been messed up as well
    Maybe you can help me with this one too? On 3 or 4 font styles I must have been playing with the spry menu bar and adjusting the size not realizing I was in percentage mode and not pixels. By the time I figured it out I had changed 4 styles to 12 and 13 %. So the font is tiny in D.W. Would I just delete these altogether, or change these to what pixel size they should be? Even though it will create a redundant font tag. (which I'm not too concerned about unless I need to be.) Or should I change them to 100%?
    Hope you can make sense of the above. I REALLY appreciate it. Was going to make the font on "really" very big but my days of messing with fonts are over!!!!
    Thanks,
    ken

  • Need Help with Font - Style -  Size

    how do you keep these the same size and style on all pages?
    example font and size will be the same but style wont. when i try
    set the same style the size changes, and if you set size the style
    changes.

    font-style:normal;
    It's not necessary to restate defaults.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "d_simpson" <[email protected]> wrote in
    message
    news:gk99ca$bcc$[email protected]..
    > Hi Joseph,
    > The best way to keep the same font size and style would
    be in a css file.
    >
    > Example:
    > body { font-family: Helvetica, sans-serif;
    font-size:10px;
    > font-style:normal; }
    >
    > This will then be applied to all pages.
    >
    >

  • IDCS3 Windows: Finding a font style

    I recently added a font style "Exp" to my Plantin family of fonts in InDesign CS3. The others all came in one package, but Plantin Exp I downloaded from another source. When I list the typefaces in InDesign from the bar at the top of the screen, 'Plantin' now appears twice: once with all the original styles, the second with just "Exp". That is manageable for manual work, but when scripting, and trying to find a character in Plantin Exp, the script misses it. There may be a fault in the installation of the new font style. Is there any way around this in scripting?

    Hi Again David!
    On This Page, City BQ Volume looks close.
    ali b

  • CS2 and CS3 HATE more than 4-5 font styles......

    Running Mac OSX 10.4.11 with dual 2 GHz Power PC G5, 1 GB Ram.
    Both CS2 and CS3 start acting R E A L SSSSLLOOOWW when I'm using more than 4-5 font styles on a page, like when creating a new logo, and typing the same name in different font styles.... At that point every action takes a while, and I find myself waiting for the computer to react, while I can hear the hard drive crunching...
    This happens ONLY when I have several font styles opened.... Once I outline them all, the speed is back to normal....
    As my primary Scratch Disk I have my hard drive, which has more than 70 GB available free disk. Secondary Scratch Disk is set for NONE.
    What gives?????

    The problem more then likely is 1 GB of RAM running on 10.4.11 which needs almost that amount to run by itself.
    The problem with the 150 GB drive is not so much that it is small by todays standards it is probably an older hard drive and therefore probably has a 8MB buffer making itwell slow at transferring files such as to a scratch disk which is also part of the problem as it is also probably the scratch disk and now you have these two things going against you and slowing the whole thing down each time you do anything that caches.
    Like loading a applying styles to fonts.
    I would suggest more then 4 GB of RAM and another hard drive partitioned so one partition can be used as a dedicated scratch.
    Also you might look, to see if I am correct, by means of the About this mac under the Apple menu and look at the hard drives buffer if 8MB then you might want to replace it
    with a hard drive that is much larger and has a 32 MB buffer.
    Just some things to consider you are a bit behind the times.

  • Font style changes when making a book in iphoto

    I am trying to make a book and the inner cover I wrote a little about our vacation. I wanted to make the font size larger so I clicked on the settings button below and this window popped up with "cover title:" "Cover Subtitle:" etc with the font style/Plain/and font size. When I went to change the "Flap Body" font size to make it larger to a size 14 and then clicked ok everyone of those options went from Helvetica Neue to the next font in the list which is ugly. I try to set it to Helvetica Neue and then they all change to another font??????? I ended up just doing open apple z to undo to the original. I use iphoto 7.1.4 and I use the 10.4.11 operating system. I have an imac g5 powerpc. It's not a life or death situation but it is annoying that I cannot change the font size of one thing without having it change the font style of all the options. Any suggestion would be great!!

    I once overshot the limit by marking too many photos to fit within 99 pages, but I could never figure out how to fool the application and had to give up trying to add those 14 extra photos.
    I asked a friend (who practically lives in Terminal) if he had any way of modifying that limit, but he reminded me that if their printing services are set up to bind books and bill for only 99 pages, fooling the application might be useless if the service only prints me a 99 page book and discards the additional pages.
    I can understand that you wouldn't want to let people print 1000 page books, but I sent feedback anyway to allow me to increase the limit. Anyone know of any service that lets you print beyond iPhoto's limits?

Maybe you are looking for