Inuyushi replied

96 weeks ago

Thanks, that did the trick for the background! But if you look at the page again you can see that the background of the flash program is still white. Here's the code for the entire widget if that helps.

<head>
<style>
#widget-4e243b3a205cb263ab065724 div.widget-body{
background-color:#FFFF00;
}
</style>
</head>

<center>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#
version= 6,0,29,0" width="182" height="265">
<param name="movie" value="vananavi2.swf">
<param name="quality" value="high">
<embed src="http://killingifrit.com/vananavi2.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/
x-shockwave-flash" width="182" height="265">
</embed>
</object>
</center>

Also, here is the link to the webiste with the same thing here.


last edited 96 weeks ago by Inuyushi

Inuyushi replied

96 weeks ago

Fixed it myself. Had to add a param to the HTML

<param name="wmode" value="transparent">

and in the embed had to add

wmode="transparent"

Worked like a charm! Thanks for the help with the background though. Changed it from a color to an image and it looks PIMP

Nep replied

90 weeks ago

This is driving me insane, I've gotten everything working except for this:


Ignore the subjects. Haha..

As you can see, it's almost completely unusable. I've tried changing the background color, the text color, everything.

I can't at all get the background color to change, and changing the text color within that menu is causing other things to change as well, such as the display date of things like news posts, loot acquisitions, etc.

Any ideas on how to either change the text color within that menu only, or how to change the background color of it so that I won't need to change the color?

site link: qfb.guildwork.com for those who want to have a look for themselves.

Sorry to bump an old topic, btw.


last edited 90 weeks ago by Nep

Pangy replied

90 weeks ago

Where on your site is this inbox?

Pangy replied

90 weeks ago

Got bored waiting >.>

As an aside, if you want to hide your HTML widgets, this should hide the two of them on your homepage:

#widget-4e5b4a70205cb20305000d2d {
display: none; }

#widget-4e5df6d5205cb20d49000040 {
display: none; }


And in case you wanna change your Feed's comment form:
.placeholder {
    background-color: #f00;
    color: #999999;
}

I used red only so you'll notice it. I'm sure you already knew this but I'm bored and I've been waiting for you to log in for hours now–-I'm very confused by where you got that inbox (I can't find it anywhere!)

Pangy replied

90 weeks ago

AHHHH it's the gwbar mailbox!! I feel really stupid now.


Ok, this should work for you–-let me know.



For the usernames ('cause they're links):
#inbox-preview-pane a  {
color: #f00 !important;
}


For the date (under usernames):
#inbox-preview-pane .gray {
color: #0f0 !important;
}


For the subject of the message:
#inbox-preview-pane div.subject-top {
    color: #000 !important;
}


For the message preview (below subject):
#inbox-preview-pane div.subject-bottom {
    color: #f0f !important;
}




It'll look like this until you change the colors:








Because you're specifying the element #inbox-preview-pane before any styles/properties (like gray), nothing outside of the inbox preview box should be altered (for example the gray in your loot widget).



Let me know if I did something wrong. This was fun :D

Nep replied

90 weeks ago

Working on this now, appreciate the responses. I'll let you know as soon as I make the changes.

Nep replied

90 weeks ago

That definitely did the trick.

God I broke my brain for hours trying to figure that out haha. Thanks so much for the help.

Nep replied

90 weeks ago

One other issue, I'm having the same problem once again on the gwbar, within the chat this time. I can't seem to change the color to display the sender's name for incoming messages.

It looks like so:


Any ideas?

Pangy replied

90 weeks ago

You have a set to white (all your links). Your chat recipient's username is linked to their profile, so it's displaying in white as well.


This will change the chat username's color to black–-without affecting other links on your page:

#chat-area a {
color: #000 !important; }


And if you want it to change colors on mouse-over you can use:

#chat-area a:hover {
color: #f00; }





That will affect the username in the titlebar though, so add this code to single out the titlebar link:

.chat-tab-frame-titlebar-name a {
color: #f00 !important; }


I didn't try this as thoroughly this time, so (again) let me know if something's broken/messy.
This topic is locked. You cannot post a reply.