Hello,

One of the ways that you could do this is to set your own CSS rules
and specifically override the CSS which is included with the wizard.
For example, with this sample:

http://www.google.com/uds/solutions/wizards/dynamicfeed.html

You could add the following CSS to change the border

  <style>
    .gfg-horizontal-root {
      border: 5px solid red !important;
    }
  </style>

If you are using Firebug or Chrome's Inspect Element, you can examine
the HTML structure (DOM) created by the JavaScript to see what the
applicable classes are to come up with CSS selection rules. Another
option would be to have some JavaScript to set the style attribute of
the specific divs but you would have to wait until after the
JavaScript had created them.

Happy coding,

Jeff

On Aug 22, 2:40 pm, BostonBaaB <[email protected]> wrote:
> Sorry in advance if my confusion is too simple for these forums. I am
> rather new to web design and I am trying to place the Google Feed API
> on my webpage. Which is no problem using the wizard. I have been
> trying for a couple days now to figure out how to make the feed
> control match my site css. All I want is to use my default font and
> colors with a custom border. Basically I would like to remove the sky
> blue Google color for my own.All my efforts bring no luck. It seems
> that you cant edit the google css because it is remote. When I
> download the css it doesn't do anything to my div. Is there something
> simple I am missing or is it possible to make the api custom to your
> site. Thanks in advance for any replies.

-- 
You received this message because you are subscribed to the Google Groups 
"Google AJAX APIs" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-ajax-search-api?hl=en.

Reply via email to