I'm having a problem using gtk themes, some themes set bgPixmaps and I want a range of different buttons each having different bgPixmaps (at least I need two different Buttons), I've tried to overwrite these pixmaps, but it simply doesn't work. I've really tried almost everything in the past 4 hours and I can't find a solution. Is there any other way to set a custom background to my buttons?
Button hyperlink = new Button();
Label hyperlink_label = new Label();
hyperlink_label.Text = hyperlink_text;
hyperlink_label.ModifyFg(StateType.Normal, new Gdk.Color(0,0,0));
hyperlink_label.ModifyFg(StateType.Prelight, new Gdk.Color(255,255,255));
hyperlink_label.ModifyFg(StateType.Selected, new Gdk.Color(255,255,255));
Pango.FontDescription hyperlinkFontDesc = new Pango.FontDescription();
hyperlinkFontDesc.Family = "Adobe Garamond Pro";
hyperlinkFontDesc.AbsoluteSize = hyperlink_fontSize * Pango.Scale.PangoScale;
hyperlink_label.ModifyFont(hyperlinkFontDesc);
hyperlink.Style.SetBgPixmap(StateType.Normal, previewImagePixMap);
hyperlink_label.Style.SetBgPixmap(StateType.Normal, previewImagePixMap);