How do I change a font for a specific widget and not my whole site?

I recently added an affiliate link to my site, and the widget they provided is referencing my CSS text style sheet.
type="text/javascript"
The problem is that the text on my site is white, and the search box in the affiliate box is white, so you don't see anything in the text box unless you highlight the text. I changed the font color on the affiliate widget on their site, but it still comes up white.
I did see a discussion where they suggested changing the font family, which may be a start. I'm wondering though how can I change the style for just this one reference and not my whole site without changing the code I was provided from the affiliate. Perhaps I need to add something to my style.css?
Thanks!

You might try inline CSS styles in your widget HTML code but without seeing your page, it's impossible to be more specific.
Nancy O.

Similar Messages

  • How can i change the font for a theme in iDVD.

    how can i change the font for a theme in iDVD. For example; the text of the rotation theme in the background of the movie. i want to change the font of the rotating text there. How do i do this?

    Have a look at this: http://hints.macworld.com/article.php?story=20080130180258257

  • How can you change the font size in the application and system headers?

    How can you change the font size in the application and system headers?  I searched the system and finder prefs to no avail.  Changing the screen density is not a good option.
    Thanks

    I downloaded Tinkertool.  Found the font section and increased the size of most selections.  The only thing that changed that I can see is the window label.  The apple line, bookmarks line, the tool bar in safari are all the same---font size of about 4.  Found the finder "show view options" but that didn't seem to change anything either.  I'll keep working.  Restarted all apps after changes as well.

  • How do I change the font size in the menus and toolbars

    The font size is too small for my old eyes and I would like to make the font size larger in the upper toolbars (address bar, etc.) and menus. Thanks, Jeff

    See: Theme Font & Size Changer: https://addons.mozilla.org/firefox/addon/162063/

  • How do you change the font size under the event and iphoto view photos?

    I would like to change the font size in iPhoto under the photos that appear in the Events view and in the Photos view. I was told by a tech at Apple that it cannot be done because it is built into the software. What you see is what you get. That seems unusual because the font size in the Photo view is smaller than that in the Events view. The Font control that exists in File/Edit are for fonts used when you open a photo and add your own captionI and have nothing to do with the various views. Does anyone know a way to do this?   Thanks

    I'm afraid it really is WYSIWYG. It can't be changed.  You can send a feature request to Apple via http://www.apple.com/feedback/iphoto.html.
    OT

  • How do I find the font for a specific character in a textItem?

    I'm writing a script that builds a font list for an open document. While I could have lookup the fonts for the file as a whole, my goal is to iterate over specific layerSets to build a font list from. The issue I'm facing, is that referencing:
    app.fonts[text[n].textItem.font].name
    Only pulls the font name of the first character of the textItem. I need to get the names of all the fonts in the textItem, and while I can successfully loop through each of the letters, they do not have the character attributes associated with them.
    I tried this: app.fonts[text[n].textItem.contents.font].name
    As well as many iterations of a similar idea, and I cannot get it to pull the font name, as it's not an attribute of each character. I apologize if this is a remedial question, but I'm a bit of a novice with javascript in Adobe programs.
    For an example of what I'm trying to acheive, I was easily able to do this in illustrator, by using the following statement:
    fontName = text.characters[j].characterAttributes.textFont.name;
    When placed in a loop, this goes through each font in the text Layer.

    This should get a list of the fonts used in Type Layers in the selected Group.
    // get list of fonts used in the active group;
    // based on code by paul riggott;
    // 2014, use it at your own risk;
    #target "photoshop-70.032"
    if (app.documents.length > 0) {
    var theFonts = main ();
    alert ("the fonts used in the folder " + activeDocument.activeLayer.name + " are"+"\n"+theFonts.join("\n"))
    function main () {
    var theFonts = new Array;
    var someLayerStuff = getActiveLayerIIndex();
    if (someLayerStuff[1] != "layerSectionStart") {return []};
    var aNumber = 0;
    // get number of layers;
    var ref = new ActionReference();
    ref.putEnumerated( charIDToTypeID("Dcmn"), charIDToTypeID("Ordn"), charIDToTypeID("Trgt") );
    var applicationDesc = executeActionGet(ref);
    var theNumber = applicationDesc.getInteger(stringIDToTypeID("numberOfLayers"));
    // determine the start index;
    if (activeDocument.layers[activeDocument.layers.length - 1].isBackgroundLayer == true) {var theStart = someLayerStuff[0] - 2}
    else {var theStart = someLayerStuff[0] - 1};
    for (var p = theStart; p >= 0; p--) {
    try {
    var ref = new ActionReference();
    ref.putIndex( charIDToTypeID( "Lyr " ), p);
    var layerDesc = executeActionGet(ref);
    var layerSet = typeIDToStringID(layerDesc.getEnumerationValue(stringIDToTypeID("layerSection")));
    var isBackground = layerDesc.getBoolean(stringIDToTypeID("background"));
    var theName = layerDesc.getString(stringIDToTypeID('name'));
    // check if group closes;
    if (layerSet == "layerSectionStart") {aNumber++};
    if (layerSet == "layerSectionEnd" && aNumber == 0) {return theFonts};
    if (layerSet == "layerSectionEnd" && aNumber != 0) {aNumber--};
    // if not layer group collect values;
    if (layerSet != "layerSectionEnd" && layerSet != "layerSectionStart" && isBackground != true) {
    var hasText = layerDesc.hasKey(stringIDToTypeID("textKey"));
    if (hasText == true) {
    var textDesc = layerDesc.getObjectValue(stringIDToTypeID('textKey'));
    var paragraphStyle = textDesc.getList(stringIDToTypeID('paragraphStyleRange'));
    var kernRange = textDesc.getList(stringIDToTypeID('kerningRange'));
    var rangeList = textDesc.getList(stringIDToTypeID('textStyleRange'));
    for (var o = 0; o < rangeList.count; o++) {
    var styleDesc = rangeList.getObjectValue(o).getObjectValue(stringIDToTypeID('textStyle'));
    var aFont = styleDesc.getString(stringIDToTypeID('fontPostScriptName'));
    // add to array;
    var theCheck = true;
    for (var n = 0; n < theFonts.length; n++) {
    if (theFonts[n] == aFont) {theCheck = false}
    if (theCheck  == true) {theFonts.push(aFont)}
    catch (e) {};
    return theFonts
    ////// get some stuff from the active layer //////
    function getActiveLayerIIndex () {
    var ref = new ActionReference();
    ref.putEnumerated( charIDToTypeID("Lyr "), charIDToTypeID("Ordn"), charIDToTypeID("Trgt") );
    var layerDesc = executeActionGet(ref);
    var theIndex = layerDesc.getInteger(stringIDToTypeID("itemIndex"));
    var theSection = typeIDToStringID(layerDesc.getEnumerationValue(stringIDToTypeID("layerSection")));
    var hasText = layerDesc.hasKey(stringIDToTypeID("textKey"));
    return [theIndex, theSection, hasText]

  • How do I change the genre for a specific song?  In the past, I just had to double click on the genre field entry.  That no longer works.

    How do  change the title of a song or its genre?

    You should be able to edit any of a song's metadata elements (including title and genre) using right-click > Get Info.  In the new iTunes 12 dialog, the Genre field should allow you to type in a genre or select from a dropdown (which offers a combination of iTunes' built-in genres + those you've defined yourself):
    If you SHIFT right-click > Get Info you can also access the "old style" dialog and enter the genre there.
    Are you unable to enter the genre, or having done so is the value held by iTunes not being updated?  If the latter, then you may have an issue with the permissions on your media files or the files may be set to read-only.

  • How do I change default location for file downloads, as in not "C" drive

    Unsure where to make to changes so my downloads will go to another hard drive instead of the "C" drive under documents.

    ausing Firefox 8.0 with Windows 7 64-bit, I could not locate to area where I change
    the default location within Internet Options. Used to work fine under Windows XP.
    Any idea where this default is set under this application?

  • How do I delete a column for just one table and not all the others?

    I have multiple tabels in a Pages document. I want to delete some columns on some of the tables but keep them on the other tables. When I delete the columns it deletes all of them on all of the tabels and I dont want that.

    No. To do what you are asking for would require a separate table on each page.
    Of course you can always move blocks of cells around manually, but I can't imagine how you would manage that.
    Jerry

  • How do I change my apple id on my iCloud and not lose my information?

    Recently, my iphone has been telling me that my username and password are not correct for my iCloud and for the app store, etc. I went online to check my apple id and reset my password if need be, and I get told that I do not have an apple id with my email. Despite the fact that I've been using this apple id for many years, and my iCloud under this apple id for about 6 months, I went ahead and just made a new apple id so I would not have to deal with it. Right now, I'm wondering if I can delete my iCloud account, with no way to back it up because the apple id is supposedly nonexistant, and replace it with a new one, will my phone hold on to my contacts and merge them with my new iCloud account? Could someone help walk me through this?

    Also see http://support.apple.com/kb/TS3998

  • How does one change the font size for folders and/or file lists in the Bookmarks Library?

    How does one change the font size for folders and/or file lists in the '''Bookmarks''' Library?
    Since the upgrade to version 9.0.1 of Firefox, the Bookmarks feature changes are confusing me. They seem to be confusing themselves as well. The list of bookmarks has changed. The font size is so small that my aging eyes cannot read it without fogging the screen with my breath. Some folders are out of alphabetical order (where I know they were previously good), and some are missing altogether (folders to which I frequently add references).
    As for missing or deranged files or folders, was there something that I should have done or now need to do to recover those after the upgrade (or before)?
    With regard to font size,
    1. there is no “Edit Bookmarks” or like option to edit the list in this version
    2. the “zoom” option in the “view” list of functions is greyed out when in “Show All Bookmarks” window
    3. expanding the browser window has no effect on font size
    4. “Preferences” settings for font size has no effect in that window either, including advanced settings
    5. “Help” offers none that I can find.
    Can any of you Help?!?

    Maybe this extension helps:
    *Theme Font & Size Changer: https://addons.mozilla.org/firefox/addon/theme-font-size-changer/

  • How do I change the font color for numbering in a matching question slide?

    I have a grey image on a question slide, but the numbering for the answers in a matching question is defaulting to grey so learners can't see to match up.  How can I change the font color of these choices?  Thanks.

    You probably edited the master slide without changing the theme colors? Check the Object Style for Answers in the Object Style Manager. The numbering takes the same color as the answer text.
    All depends on the Theme colors palette that you are using. Normally Question answers use the darkest tint of the fourth color. I started blogging about color management, but description of the use of Theme colors will be published later.
    Colorful 2015 with Adobe Captivate - Captivate blog

  • HOW DO I CHANGE THE FONT OF "Message to Display" IN THE Prompt User for Input

    Hi,
    HOW DO I CHANGE THE FONT OF "Message to Display" IN THE  Prompt User for Input?
    Thanks for your help 
    XN 

    Right click and select Open front panel >> Convert.
    Change the vi as you need. then you can save it as a normal sub-vi.
    If you have Labview 8.6, maybe (i am not sure) you can edit the express vi. Express vis are supported in 8.6

  • [GNOME 3] how can I change specific font for a specific language?

    Hello Community,
    I would like to know if its possible to specify a font according to its language...
    more specifically on CJK fonts (Chinese, Japanese, Korean)
    so far I'm able to globally install a font by
    grabbing a *.ttf (and *.otf) file and moving it to the /usr/share/fonts/(designated folder according to *.filetype)
    i dont like how the default font for the CJK languages and I would like to change it so...
    any idea how?
    THANKS IN ADVANCE ^_^

    i installed the font manually and not using pacman nor aur packages.... i downloaded an *.ttf (and *.otf) files and move them to /usr/share/fonts/TTF using nautilus...
    i couldnt figure where to configure them... i was able to configure it on firefox using about:config but the system itself... i didnt know how...
    for some reason though when i resetted my laptop... the newly installed japanese font was able to applied in the system... it's solve but i have no clue how it fixed itself...
    anyways thanks for the help @karol
    http://i.imgur.com/r2HYahC.png
    Moderator edit [ewaller] Changed img tags for over sized picture to url tags.  Consider using thumbnails https://wiki.archlinux.org/index.php/Fo … s_and_Code
    Last edited by ewaller (2014-04-20 15:11:09)

  • How do you change the font of a JTable's header?

    I need to know how to change the font for the header of a JTable, specifically how to make it larger. Any help would be appreciated.

    JTableHeader header = table.getTableHeader();
    Font font = header.getFont();
    header.setFont(font.deriveFont((float) font.getSize() + 10));db

Maybe you are looking for

  • Household with one Mac, Multiple iOS Devices

    So, We have One iMac 10.7.3, iTunes 10.5.3.; or rather we are buying our First iMac. Our iphones' have not been synched, No iCloud yet, etc. All info is on our iPhones, Pictures, Contacts, etc. Obviously there is information unique to each iPhone How

  • AC 5.3 - BI Reporting

    Hi all, Can anyone send me or point me to a list of the Standard Reports that are created in BI for AC 5.3 as I can not fin dthe information anywhere. regards Simon

  • Field selection in activity journal

    Hi, I have a problem in Activity journal in CRM Activities.In activity Journal I created template type and template and also I maitained field selection as REMARKS in attributes tab page of the template type.Now I want to maintain one more field in a

  • CRM 7.0 - Enhancement of Data Sources for interactive Reporting

    Hallo All, I would like to know whether anybody has positive experience with the enhancement of CRM Data Sources for interactive Reporting. I read that the enhancement of Customer fields should be possible (Those Data Sources below the Hierarchy node

  • Adobe Reader XI Hanging

    My Adoeb Reader XI program hangs, stops working & freezes the whole computer... Why is this..? I have uninstalled & reinstalled XI