Font and Link Formatting

I have made several posts where I have used bold headers. These appear fine in iWed but in Safari, only the first instance is bold. Also, link text is set to the default however in Safari the text is not a different color unless you roll over it.
And, I have comment turned on. While this was working for awhile, after a republish, the comments feature disappeared, while still set to ON in the inspector.
An example page is http://skarka.com/skarka/Blog/Entries/2009/12/4_NBComcast.html

And, I have comment turned on. While this was working for awhile, after a republish, the comments feature disappeared, while still set to ON in the inspector.
you post-edited your pages to add google analytics code, that is the problem.
post-editing will cause problems with blog/podcast/photo commenting and attachment, this is a known issue from iweb1.
the only way around this problem is using javascript to add GA code to the page, it's an extra bonus because it only be done once (much better than) instead of post-edit after every publishing.

Similar Messages

  • Missing Fonts and links

    I lost all my fonts after the updates how do I get my fonts and missing links back?

    I have this issue too.  I am missing handwriting dakota which is only leased to Apple.  According to the information researched all other download applications from the web are corrupt.  I have these in the photobooks that I sell.  I have just received an additional order for both a bride's and groom"s Mom.  They want the same Font.

  • Own fonts and links

    I want to make an "open submenu on click" menu with use of
    own fonts. With sifr3 I managed to get normal headlines and also
    links as own fonts, but I it seems tricky with links and especially
    with the submenu.. look at that:
    Menu
    with own fonts and
    Menu
    without own fonts.. Someown has tips how to do ? or tutorial
    tips?

    Thank you Tom, suspected as much.
    I'm thinking of doing my master (MPEG-2 or H264) with Compressor, then moving the project to Adobe Encore CS6.  Is that something that might sound logical to you?  As what might be best out there in software for doing something like this?

  • Fonts and text formatting

    could i have equivalent fonts in SAP for those in MS Word???? i require to format SAPscripts...

    Hi,
      You have many formats available in Sap scripts.. Go the the paragraph formats and you will see many under family option for texts... 
    Create a paragraph format for your output and give to the text
    DP  'Hello World'.
    Here DP is the name of the paragraph format. and Hello world will be printed on the window with that size and format of the DP.
    Thanks
    Mahesh

  • Websites are formatted incorrectly and links won't work, since last update

    Since I installed the latest updates for firefox certain websites such as : http://www.escapistmagazine.com/ and hotmail , are incorrectly formatted and the links on the pages don't work. I can load my inbox on hotmail but the links to the emails don't work ie. you click on it and nothing happens. On the Escapist many of the links don't match the boxes they should be in, sections of the page are in the wrong place with images not loading, and many of the links don't load the right page, if anything at all.
    I've tried to use the report broken website function but this gets stuck on sending report and if you click submit report again it shows the details etc as being blank.
    I've tried restoring FF to defaults and also reinstalling it with no success. I know the website are okay as IE loads them correctly.
    any help appreciated

    Hi Rick,
    Interesting thread on Quark's forums. Mark Douma posts here, too. Very knowledgeable with the how fonts work in direct relation to the OS.
    I just opened a bunch of OpenType fonts and launched Quark. No problems. But as Mark noted, you'll see the bug pop up after a restart and then try to open the document that uses the OpenType fonts.
    However, I created a simple document using a half dozen different OpenType fonts and saved it to the desktop. Going by Mark's assumption about the cache files, I shut down my Mac and turned it back on. Essentially the same as turning it on the next day. Per his thoughts, I left the font cache files alone, activated the fonts again in Suitcase Fusion and launched Quark 6.52 by double clicking the document I had just created. Quark and the document opened without a hitch.
    Per Mark's post at Quark's forums, Quark should have crashed since I'm doing this all under 10.4.10. That tells me that while the font cache files are the problem for those who need to keep clearing the cache files to get OpenType fonts to work each day, it's not due to OS 10.4.6+. Since I'm having no issues (and never have), I would have to believe it's more likely to be a damaged OS that's causing the problems. If the OS is damaged, then the likelihood that it will in turn write damaged cache files is high.
    Or, Quark is damaged. It writes its own font cache files in the /Applications/QuarkXPress 6.0/jaws/ttfont/ folder. If you cleared only those cache files out and relaunched Quark, it might work without clearing the system cache files. That would tell you for sure that Quark needs to be reinstalled rather than the OS.

  • SmartForms Character Formats, Fonts, and Sizes?

    Does anyone have any good documentation, links, or suggestions related to character formats, fonts, and sizes we can use in SmartForms? My biggest challenges are trying to decide which fonts and their sizes to use in my windows.
    For instance, what are good small, or medium, or large, font types to use under different scenarios, and what suggested sizes should be used with them? It would be nice to have some kind of a tip sheet that would refer to this. Because I spend more time playing with configuration then I do actually coding.
    Open to all or any suggestions.    Thank-You.

    hi,
    please check in these link
    SmartForms & Smartstyles
    Re: SAP Smart Forms
    hope  this will help u..
    pradeep
    Edited by: pradeep kandgal on Jan 6, 2009 3:24 PM

  • I would like to print links as regular text i.e. not underlined or in a different font and color.

    I have created a page with my resumé, using Dreamweaver CS4 on my iMac (running OS X 10.6.6).  You can see the page here: http://www.peterforkes.com/Resume.html
    It looks great when it is on the screen, but when I print it I would like the links to not be underlined and also to be displayed in the same font (and color) of the text surrounding it (a link is largely useless on a piece of paper, if it it not showing the URL).
    So, I created a stylesheet called "print.css" and have this in it:
    a:link {
    text-decoration: none;
    In my html document (Resume.html)  I have this code, at the top:
    <link href="_css/Resume.css" rel="stylesheet" type="text/css" media="screen" />
    <link href="_css/Print.css" rel="stylesheet" type="text/css" media="print" />
    Now, things such as the graphics in my document do not print out (this is how I want it) but links seesm to be doing unexpected things for me.  As I mentioned, when I print the page I would like them to:
    a) not print with an underline (which I would expect the code snippet shown above to do).
    b) I would like the link color to be the same as the surrounding text (I have links in several places, such as in <h2>, <h3> and <p>).
    c) I would like the link to have the same font and text size as the surrounding text.
    Any help is always appreciated.
    Peter A. Forkes

    You've solved it for a:link but you may print the page with the <a> tag in link or visited state so you need to cover both.
    In http://www.peterforkes.com/_css/Print.css
    change
    a:link {
    text-decoration: none;
    to
    a:link, a:visited {
    color: #333;
    text-decoration: none;

  • New user of Mountain Lion. I find that when I attach a URL as a link to Mail 6.0. The font and font size changes!!!!

    I have a problem with either Mountain Lion, Safari or Mail 6.0.
      When I try to attach a URL as a link that is taken from Safari to mail 6.0 the font and font size changes!!!!!
    It changes from comic sans 24 to heltvekia 12!!!! What the heck is going on??????
    Thanks for any help you can shed on this problem.
      BBC1050

    I also upgraded to Lion and do have font problems in Mail. Just in some mails, including my own signature.
    I just updated today with 10.7.1, but still have the font problem.
    Does anyone know if Apple will solve this?

  • Changing link navigation bar font and color

    Is it possible to change the font and color on the links for each page on iWeb?

    Welcome to the Apple Discussions. Yes, with the code and a HTML snippet that's described in this tutorial: #24 - How to Change the Basic, Rollover and Visited Color of an iWeb Navbar.
    However, if you want to create a site that is more search engine friendly I suggest you create a text based navbar as described in this demo page: Text Based Navbar. If you don't have a lot of pages in your site it's not too difficult.
    OT

  • PFD's -- can 'font size' and 'page formatting' be user-controlled?

    Can the *font size* and *page formatting* -- including *page size* -- of a PDF document be altered for printouts?
    Also, does this vary from one PDF reader to another, or is it pretty much standard?
    Thanks.

    Texas Mac Man wrote:
    Can you explain why you want to do this? There may be a solution.
    One reason is that many PDF's print in a larger font than I would like. I was imagining having control of the page layout and appearance the way you do in most situations, and wondering whether PDF's could be similarly controlled by the user -- at least in those respects (I know they are not designed to be 'edited').

  • Paragraph format and character format in script

    hi expects,
    what is the difference between paragraph format and character format in script?

    Hi Rohit,
    Paragraph formats control the formatting of paragraphs in SAPscript  whereas Character formats are used for text formatting within paragraphs.
    Character formats will have Standard attributes like Bold, Italic, Underline, Font family, Font size etc.
    Paragraph formats will standard attributes of Character formats and in addition to this, they will margins, Indents, tabs, Alignments, Line spacing and delimeters.
    Check this link for Paragraph formats
    http://help.sap.com/saphelp_47x200/helpdata/en/d1/802e02454211d189710000e8322d00/content.htm
    Check this link for Character formats
    http://help.sap.com/saphelp_47x200/helpdata/en/d1/802e43454211d189710000e8322d00/content.htm
    Thanks,
    Vinay

  • Is it possible to change the font and font-size in Richtooltip?

    Hiya,
    For "RichTooltip" I'd like to change the font and/or font-size is that possible?
    Is it possible to change the size of the tooltip box so that it is wider?
    Currently my tooltip looks quite ugly:
    I tried reading the help but I couldn't find a way to do this using the API for sap.ui.commons.RichTooltip
    Thanks in advance!

    Hi,
    you can use something like this for formatted text.
    <script>
                var oTextField = new sap.ui.commons.TextField({
                      valueState : sap.ui.core.ValueState.Error
                }).placeAt("content");
                var sHtml = "The rating specifies the trustworthiness of the account. You can choose between the following values:<br>";
                sHtml += "<ul>";
                sHtml += '<li><strong>A:</strong> <font color="blue", size ="2px" family="Helvetica">Highly trustworthy</font></li>';
                sHtml += "<li><strong>B:</strong> In generel trustworthy but some weak moments</li>";
                var oRttTextField = new sap.ui.commons.RichTooltip({
                      text : sHtml
                oTextField.setTooltip(oRttTextField);
                </script>
          </head>
          <body class="sapUiBody" role="application">
                <div id="content"></div>
          </body>
    Refer this link.
    RichTooltip - SAPUI5 Demo Kit
    Best Regards
    Dhananjay

  • How do I change font and colors back to default?

    I have changed the font and color of the text through the tools button and the options button and the content tab. I find nothing telling me how to change the font and colors back to default font and colors. Can you advise me? I'm using Windows 7 Home Premium OS. Thanks.

    Hi Brenda19605,
    You can use this article to set the fonts and colors: https://support.mozilla.org/en-US/kb/change-fonts-and-colors-websites-use?esab=a&s=font&r=0&as=s
    The default settings for the font are in this article:
    https://support.mozilla.org/en-US/kb/Some%20text%20shows%20up%20bold%20after%20upgrade
    Unfortunately for the default colors has no good reference. But for text it is black (most lower left) color, background is white (most upper left color). Unvisited links is blue (column 8, row 5) and visited link is purple (column 9, row 5).
    Let me know if you need anymore help!
    Lordfreak

  • How to change DEFAULT font and font size on new Pages document

    When I open a new Page document, it always comes in with a default font and font size. I know how to change those settings on the open document.
    I want to know how to change the ~default~ font and font size so that a new Page document always opens with those default settings.
    -Thanks for your service to the community.

    Hi Lionate
    Welcome to the forum.
    Make a document to your liking.
    Change the Body style and any other styles in :
    +Menu > Show Styles Drawer > click on the little triangle next to Body > redefine Style from Selection+
    Capture the page:
    +Menu > Format > Advanced > Capture Pages… > Name it > OK+
    +Menu > Format > Advanced > Manage Pages… > Delete other Sections/Pages > OK+
    Save as a template:
    +Menu > File > Save as Template…+
    +Menu > Pages > Preferences > General Preferences > For New Documents > click Use template: > Choose > browse to the template above+
    Peter

  • Is Acrobat Pro right for us. We have an Employee Handbook that needs editing. Some is current pdf, some from an older version. Want to get all into one handbook, have the table of contents automatically adjust and link to specific pages from the ToC.

    Is Acrobat Pro right for us. We have an Employee Handbook that needs editing. Some is current pdf, some from an older version. Want to get all into one handbook, have the table of contents automatically adjust and link to specific pages from the ToC.

    You can download the trial version (http://helpx.adobe.com/acrobat/kb/acrobat-downloads.html) to convert the PDF back to WORD if you do not have the original. The conversion may not be perfect, but it is typically better than starting from scratch. You may be lucky and get a good result. You might check the settings (in the save screen) to try retain format versus retain text flow. The format version can be a pain to edit since it creates a bunch of text boxes. The flow version may require you to reformat in WORD, but you likely would want to do that anyway.

Maybe you are looking for

  • Using tab groups but Firefox 28.0 crashes and even can not save all tabs in archive recently

    Hi. I installed tab groups addon on my firefox 28.0 (firefox portable version) and each group has its tabs. of course. Problem is that Firefox crashes when i work on a group with the tabs and even can not save all tabs in archive as MAFF recently too

  • OPen and closing of fiscal year variant

    Hi friends, in ob52 once we opened a fiscal year. Can we closed that for every month end after month end procedure. Once closed can we open at any time. Thanks in advance

  • IdeaPad U550 touchpad frezes after 1 minute from start up

    After 1 year of using my IdeaPad U550 without a problem, I experienced the folowing problem: touchpad is freezing after about 1 minute from power on. Also if i want to use an external mouse the same thing happens. I tried using the OneKey Rescue syst

  • Cisco 4400 - 100 WLC ap manager IP address

    I am going to implement a Cisco 4400-100 WLC. I need it to manage 100 Cisco LWAPP AP's Can this be done with one AP Manager IP address? Is it recommended to have the AP manager and manager address on the same subnet? How many of the 4 fibre connector

  • Why won't Mac App Store remember my password? + Other Issues

    It's infuriating that whenever I want to: install something I've bought, buy something, or something else, it asks (yet again) for my pwd. Is there some way to tell this ******** app to forever remember my pwd?* Also, a few wks back (not longer after