How do I enable bold/italic text formatting in blog module on website?

For some reason I can't figure out how to enable more text formatting options on our blog. We used the blog module on a muse template. I customized the module to apply fonts we used on our website. The main text on the blog is Lato.
Link to blog: Coupar Consulting
When we go in to write a post you can use the bold/italics options and it shows up in the edit window as shown in the screenshot below:
The font is not correct, but because I set the font in the module to use Lato it does show as lato when you publish, see preview below (notice no bold or italic text):
What am I missing??
Thanks in advance!!

Use your browsers console and inspect tool. This stuff becomes very easy.
address,caption,cite,code,dfn,em,strong,th,var,optgroup
  font-style: inherit;
  font-weight: inherit;
Line 34 ish in - http://www.couparconsulting.com/css/site_global.css?3869595648
This overides the font bold style on strong.

Similar Messages

  • How to change the output as text format in Apps R12.1.3

    Hi All,
    Currently iam trying to modify the Java Concurrent Program (FDExtractAndFormatting) in Batch Payment Process. This Program is generated in text format in 11i APPS. Now we are upgrading to R12.1.3. In R12.1.3 output is coming as PDF format. Here my requirement is how to change the output as text format in R12.1.3 also.
    Please do the needful and suggest me.
    Regards,
    Jagadeesh

    1. It is seeded java concurrent program. Some attributes are missing from 11i to R12. In 11i it is a text format.So i have to investgate on how to retrive those attributes in R12. What is the concurrent program name?
    Have you tried to change the output and submit the request?
    2. Once all are attributes are coming in PDF format. Client wants to open same output in text format as it is 11i (In R12 it is generated in PDF format).If the above does not help, please log a SR.
    Thanks,
    Hussein

  • How to use Baskerville bold italic font in iOS?

    So I want to use bold italic Baskerville. No matter what I do, it always shows up as regular in the device (without bold or italic). My code works fine on desktop.
    I've tried using TextFormat class properties, which work for fonts like Georgia or Helvetica, but it doesn't for Baskerville.
    textFormat.font = "Georgia";
    textFormat.bold = true;
    textFormat.italic = true;
    I've also tried using the official iOS name of the font which is "Baskerville-BoldItalic" nothing.
    I've listed all the fonts using this
    var allFonts:Array = Font.enumerateFonts(true);
    And it only lists the regular fonts, no bold or italic versions.
    Any ideas on how to make Baskerville render in bold or/and italic?
    TIA

    Hello, here is the bug report https://bugbase.adobe.com/index.cfm?event=bug&id=3587210
    BTW, I have tried embedding the font, and I got a new problem.... I've described my new problem in the flash forum and in StackOverflow.
    http://forums.adobe.com/message/5457958#5457958
    http://stackoverflow.com/questions/17356240/as3-font-embed-height-issue

  • How to convert XML message in text format by using HTTPS-Receiver adapter

    Is it possible to convert XML message in text format when we use HTTPS as the receiver adapter?
    If yes, how?
    Thanks!
    Mrudula

    Hi Mrudula,
    As far as i know there are no content conversion methodology for HTTPS as the recevier adapter.
    Also you can read through these links to confirm the same:
    http://help.sap.com/saphelp_nw04/helpdata/en/0d/5ab43b274a960de10000000a114084/content.htm
    http://publib.boulder.ibm.com/infocenter/wbihelp/v6rxmx/index.jsp?topic=/com.ibm.wbia_adapters.doc/doc/sap_xi/sapximst30.htm
    SAP NetWeaver - XML Communication Interface (CA-XML) [original link is broken]
    Regards,
    abhy
    note: reward the helpful.

  • How can i enable the html:text box when clicking the html:button

    Hi,
    i have a text box which is disabled defaultly and i want to enable it when i click on submit button.
    <html:button property="new" value="new">
    <html:text property="name" disabled="true"/>
    how i will enable that text filed? please tell me?
    Thanks,
    swarupa

    try using javascript onclick attribute:
    onclick="document.form.name.disabled=false"
    m

  • How to create reports of rich text format usuing oracle pl/sql - urgent

    I want to generate reports of the format rich text format usuing pl/sql,So can any one help me out on this...

    946903 wrote:
    I want to generate reports of the format rich text format usuing pl/sql,So can any one help me out on this...There is no "urgent" here.
    "Urgent" means one of two things -
    1) people are dying, or
    2) you have a customer-facing, revenue-producing production system that is down.
    (And to get some perspective on the second case, keep the first in mind.)
    For the first, you call whatever civil emergency service seems appropriate.
    For the second, you open an SR with Oracle - which requires a paid-up support contract. For them to consider your problem "urgent", you will need to demonstrate that your problem falls under item #2. I seriously doubt your problem fits that criteria.

  • How to get AWR report in text format

    Hi all,
    Here we are getting AWR report in html format through OEM.I want to get AWR report in .txt format
    Please help me
    Thanks in advance

    Hi
    You can use the following scripts:
    - ORACLE_HOME/rdbms/admin/awrrpt.sql
    - ORACLE_HOME/rdbms/admin/awrrpti.sql
    HTH
    Chris

  • How to print a value in text format

    hello,
            I want to print a value for eg. 1083.00 in word like one thousand eighty three only......can anybody tell me is there any function module present in SAP to do same.......<removed by moderator>
    Edited by: Mike Pokraka on Aug 4, 2008 6:42 PM

    Hi hav a luk @ below code,
    REPORT  zmdamountwords.
    TABLES: spell,
                  komk.
    *&      Form  get_amt_words
    *       text
    *      -->AMT        text
    *      -->WORDS      text
    FORM get_amt_words TABLES  in_tab  STRUCTURE itcsy
                               out_tab STRUCTURE itcsy.
      DATA : value1 LIKE bseg-dmbtr.
      DATA : value(18).
      DATA : t_value(18).
      DATA : value_s1(18).
      DATA : value_s2(19),
             value_s3(19),
             value_s4(19),
             rs_str(256),
             len TYPE i,
             words LIKE spell.
      CLEAR : value,value1,t_value.
      READ TABLE in_tab WITH KEY 'KOMK-FKWRT'.
      REPLACE ALL OCCURRENCES OF ',' IN in_tab-value  WITH  space.
      CONDENSE in_tab-value.
      value = in_tab-value.
      value1 = value.
      CALL FUNCTION 'Z_SPELL_AMOUNT_INR'
        EXPORTING
          amount     = value1
        IMPORTING
          rupees_str = rs_str
        EXCEPTIONS
          OTHERS     = 1.
      CONDENSE rs_str.
      READ TABLE out_tab WITH KEY 'RS_STR'.
      IF sy-subrc = 0.
        out_tab-value = rs_str.
        MODIFY out_tab INDEX sy-tabix.
      ENDIF.
    ENDFORM.                    "GET_AMT_WORDS
    Let me know if you have any doubt.
    Reward if useful.
    Warm Regards,
    Mohandoss P.

  • Text format on Blog Summary

    This may just be a quirk of iWeb, but...
    I use iWeb as a blog. When I add a new entry, I may use numbering or bullets in a post. The site publishes fine, and the blog post looks perfect. But I want my main page to display the whole blog post rather than a snippet that necessitates clicking on the "Read More" button. However, in my home page/blog summary, the text does not format in the same way as on the blog post. All of my numbering or bullets go missing, and some of my spacing is messed up. Is this to be expected, or is there a work around?

    Unfortunately, without getting into the barebones of the theme there is no way this can be changed. I know this from personal experience after having spent the last 2 months trying to build my own themes and finding out how bl**dy difficult it is.

  • How to Write in bold to a file using java I/O classes?

    Hi,
    Using I/O classes I want to prepare a .doc file in which some text will be there. I want that text to be formatted. Like some text I want to be bold. Some text to be italic. How can I write bold/Italic text to the file using java I/O classes.
    Thanks
    Prashant

    By .doc file, I'm assuming you mean an MS Word document, yes? (fyi, Word Perfect also used the .doc extension)
    The .doc format is proprietary to Microsoft and isn't documented by them. In order to output a file in .doc format you'd have to understand that format correctly, otherwise MS Word will spit out it's tongue at you, call you names, and maybe send the Microsoft Police to "audit" your PC Software Licensing.
    Fortunately for you there is an open source project to demangle the microsoft file formats. See http://jakarta.apache.org/poi/ and especially pay attention to the HDF project (Horrible Document Format).
    - David

  • Changing text size in form field (rich text formatting enabled)

    Hi all,
    I'm hoping someone can help me out here. I've created an interactive PDF with form fields with "Rich Text Formatting" enabled.
    My client has filled in the fields and would like to make the text bigger. When right-click, there are only options to change the text style (bold, italics etc) but nothing to change the text size. I'm not keen on disabling and then re-enabling the "Rich Text Formatting" options as the text have been formatted (bold, italics, superscript, subscript etc) and approved, and this will remove all the existing formatting.
    Can anyone help?
    Acrobat 9.4.6
    Mac 10.6.8
    Cheers,
    Tricia

    Thanks so much!! Really appreciated!
    Strangely enough, I found the Form Field Text Properties dialogue box by randomly choosing "Hyperlink" in the right-click options. Who would have thought!

  • Switch off bold/striked text once for all

    The admins seem to have deserted the first topic in which this question was asked, so I ask it again:
    How to switch off the bold/striked text formatting in 6.22?
    I feel the need to use rude language to express my feelings but I will censor myself by replacing rude words by non-rude words.
    Do NOT tell me to edit the fetched .xml file because it is NOT a slamming solution! You know perfectly that this horendatious thing auto-resets whenever the user logs off, which means we have to edit it again every single munching day. People have other things to do than browsing to an obscure folder to edit a file, first thing in the morning.
    There IS a user who found a REAL fix (that adds a checkbox to prevent the formatting), so maybe you should ask them how to do the same thing, or let them release this solution instead of fooling people into thinking there is a solution!
    Your ignoring of our needs and absence of reaction is jarring.
    Solved!
    Go to Solution.

    Thanks for the file, that does help and I'll make sure to keep it preciously. It fixed the UI too, and the crashes at startup, and the lag when switching between convos. For security I deactivated Internet for the install and until I deactivated automatic updates.
    Note that it was necessary to edit one last time the .xml file. I'm pasting the instructions from the other thread:
    Go to Windows Start and in the Search/Run box type %appdata%\skype and then press Enter or click the OK button. The Windows File Explorer will pop up. There locate a file named “shared.xml”. Open this file in any text editor (e.g. Notepad). Find there a text block saying:
        <Conversation>
          <EnableWiki>1</EnableWiki>
        </Conversation>
    Change the value 1 to 0. The text formatting will now be disabled. Changing this value back to 1, will again enable text formatting.

  • Text Formatting Rules for sibling elements

    How would you edit the EDD Text format rules of an element repeated several times after one sibling optional element? For example, you have the following elements, it's children, and their formats:
    1. TASK (with Title)
       A. TOPIC (w/ Title)
          (1) SUBTASK (w/ Title)
          (2) SUBTASK (w/ Title)
          (3) SUBTASK (w/ Title)
    Now, if the TOPIC Title elelment is not used, I need the Subtasks to appear as follows:
    1. TASK (with Title)
        TOPIC (w/o Title) (TOPIC element still present)
            A. SUBTASK (w/ Title)
            B. SUBTASK (w/ Title)
            C. SUBTASK (w/ Title)
    How would you write that in the EDD? Which element would I edit? The Subtask? Or, the Title?
    I've tried several combinations in the Text format rules and subrules using different context specifications like {notfirst}, {after Title}, {first}, etc., but I can't seem to make it work. Anyone familiar with the ATA iSPEC 2200 will recognize the formatting.
    Wes

    Wes,
    My take on this problem is that the numbering has to be consistent across the entire manual, so that you don't change the numbering format of a child if the parent has no title. There are several reasons for this including:
    The Topic is still there so it should be numbered, even if it has no title
    Building cross reference formats that work becomes impossible if the autonumbers change according to the use of titles. This is because at some point you will need to cross ref to autonumbers with underscore which has to be coded into the cross ref format.
    There are five different structures that can be considered legal for formatting purposes according to iSpec 2200. But it is essential that the chosen structures are used throughout an AMM, CMM or any other document. It is very easy to mix the structures in ways that can cause confusion later in the publication process. To avoid this I have used additional advisory formatting (e.g. bright red text) that only gets applied if you put the wrong structures together.
    The ATA numbering system needs all the help it can get to remain manageable...
    To give the topic an autonumber use a First Paragraph rule in the EDD. That will apply the autonumber to the title if it's there or any other element if it is missing.
    I hope some of this helps
    Ian

  • How to provide text formatting options to user from a text field

    Hi,
    My requirement is - in the interactive form, a comments field needs to be provided where user should be able to enter text with formatting options like
    Headers
    indentations
    bold/italic
    bullet points and numbers
    Once user enters the formatted texts in a text field, data needs to be displayed/printed in the same format. Could you help me on how to provide these formatting options to the user for a particular text field?
    I understand that once I define the text field with format XHTML (with RTF), user formatting can be captured and displayed in the same way. But I am not sure on how to provide the formatting options for the text field.
    Thank you,
    Madhu

    Hi,
    if you select a text field for Rich Text and the press Ctrl + E you'll get a bar for all available text formatting options in Acrobat/Reader.

  • How to BOLD some text in TEXT control?

    Hi,
    I am using {'\n'} for line break. Which HTML tag <should
    be <b> > should bold the first 2 words of the sentence?
    Plus How do I insert a BULLET before "Smaller"
    Thanks
    <mx:Text color="#F9CD00" text="Top Reports{'\n'}Smaller
    Ventricular Assist Device Gets Nod From FDA/>

    2 ways -
    <?xml version="1.0"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    backgroundGradientColors="[#FFFFFF, #FFFFFF]">
    <mx:Text width="100%" color="blue" fontStyle="italic"
    fontSize="14">
    <mx:htmlText>
    <![CDATA[
    This is 14 point blue italic text.<br>
    <b><font color="#000000" size="10">This text is
    10 point black, italic, and bold.</font></b>
    ]]>
    </mx:htmlText>
    </mx:Text>
    </mx:Application>
    or
    var myTextField:TextField = new TextField();
    myTextField.text = "No matter where you click on this text
    field the TEXT IN ALL CAPS changes format.";
    myTextField.autoSize = TextFieldAutoSize.LEFT;
    addChild(myTextField);
    addEventListener(MouseEvent.CLICK, changeText);
    var myformat:TextFormat = new TextFormat();
    myformat.color = 0xFF0000;
    myformat.size = 18;
    myformat.underline = true;
    function changeText(event:MouseEvent):void
    myTextField.setTextFormat(myformat, 49, 65);
    HTH
    Matthew

Maybe you are looking for