Quick reply/Reply box code

Post new topic   This topic is locked: you cannot edit posts or make replies.

View previous topic View next topic Go down

Solved Quick reply/Reply box code

Post by HavocPkz on November 2nd 2009, 11:23 pm

I recently found a code on how to add it but it isn't working when I add it to my CSS stylesheet.
this was the code given, just wondering what's wrong with it.
Code:
/* Input------------------------------------------------------*/
.inputbox {
background-image: url('http://i49.photobucket.com/albums/f264/Football-88/quickreply.png');
}

The box is 550x200px. Do I have to lower the dimensions or what..

Solved that ^^ with this code:
Code:
input,textarea, select {
   color : #ededed;
   font: normal 11px Verdana,Arial,Helvetica,sans-serif;
   border-color : #ededed;
   background-image: url('http://i49.photobucket.com/albums/f264/Football-88/quickreply.png');
   }


New problem:
When I hit "Quote" or something like that to bring up the actual reply box, not the quick reply, it looks like this:
Is there any way I can make them separate images? An extra code perhaps?
Any help? Confused


Last edited by HavocPkz on November 5th 2009, 11:38 am; edited 3 times in total (Reason for editing : Partially solved.)

HavocPkz
Forumotion Member

Male
Posts: 60
Age: 17
Language: English
Location: Virginia
Country:
Join date: 2009-09-17

http://havocpkz.darkbb.com

Back to top Go down

Solved Re: Quick reply/Reply box code

Post by kirk on November 4th 2009, 3:08 am

i think all you have to do is removethe photobucket link.
you mean you dont want the image in there right.

Code:
input,textarea, select {
  color : #ededed;
  font: normal 11px Verdana,Arial,Helvetica,sans-serif;
  border-color : #ededed;
  background-image: url(' ');
  }


try that and se if it works for you.
where is this box supposed to appear at?
i put the code into try to test it but i dont see it anywhere on my forum.

hahaha oh ok i see. um all that dose for me is put an image in the quick reply or subject board.. so ok thats a cool code for that. but if you remove image link then now you wont see the image, but it's the same it would show without the code there anyway?

so I'm confused unless you have it appearing somewhere else on your forum..

Another words with the image link in there then you can see the image.
but if you take the image out of the equation. then it's the same way it would be with out the code.

am i missing something? to me the only significance to have this code is that you can add an image to your subject box or quick reply.and thats actually cool.but without the image then it's just a normal box like all forums. mwii

kirk
Support Moderator
Support Moderator

Male
Posts: 3492
Language: Ebonics
Country:
Join date: 2008-09-17

http://freeforummakers.forumotion.com/portal.htm

Back to top Go down

Solved Re: Quick reply/Reply box code

Post by dotDavid on November 4th 2009, 5:07 am

Nah kirk, he means he doesn't want the image to repeat.

HavocPkz, you are in need of this code:
Code:

background-repeat:no-repeat;
background-position:center;

Place that under
Spoiler:
background-image: url('http://i49.photobucket.com/albums/f264/Football-88/quickreply.png');


Note: center can be replaced with top left, top right, bottom left, bottom right

dotDavid
Forumotion Member

Male
Posts: 2120
Language: English
Location: Australia | A moderator on this forum will know no more than I.
Country:
Join date: 2009-07-15

http://www.graphicscode.net/

Back to top Go down

Solved Re: Quick reply/Reply box code

Post by Laughing Assassin on November 4th 2009, 6:23 am

i think what he is trying to do is have the image only in the quick reply and not in the full reply box, this is what i'd like to do anyway.

Laughing Assassin
Forumotion Member

Posts: 52
Language: English
Country:
Join date: 2009-09-18

http://legacyofassassins.forumotion.com/forum.htm

Back to top Go down

Solved Re: Quick reply/Reply box code

Post by kirk on November 4th 2009, 6:24 am

dotDavid wrote:Nah kirk, he means he doesn't want the image to repeat.

HavocPkz, you are in need of this code:
Code:

background-repeat:no-repeat;
background-position:center;

Place that under
Spoiler:
background-image: url('http://i49.photobucket.com/albums/f264/Football-88/quickreply.png');


Note: center can be replaced with top left, top right, bottom left, bottom right


oh ok thanx dotdavid. i just got a Lil confused with that one.

kirk
Support Moderator
Support Moderator

Male
Posts: 3492
Language: Ebonics
Country:
Join date: 2008-09-17

http://freeforummakers.forumotion.com/portal.htm

Back to top Go down

Solved Re: Quick reply/Reply box code

Post by HavocPkz on November 4th 2009, 8:22 am

Laughing Assassin wrote:i think what he is trying to do is have the image only in the quick reply and not in the full reply box, this is what i'd like to do anyway.

^ Exactly right.

I don't want it to show up anywhere else but in the quick reply box.
But it shows up in all of the text fields on my forums.

HavocPkz
Forumotion Member

Male
Posts: 60
Age: 17
Language: English
Location: Virginia
Country:
Join date: 2009-09-17

http://havocpkz.darkbb.com

Back to top Go down

Solved Re: Quick reply/Reply box code

Post by ankillien on November 4th 2009, 10:08 am

Hello!

I got a fix for this Razz
Use this code for quick reply style. It won't affect the 'post reply' page Wink

Code:
#quick_reply textarea.post {
  color : #ededed;
  font: normal 11px Verdana,Arial,Helvetica,sans-serif;
  border-color : #ededed;
  background-image: url('http://i49.photobucket.com/albums/f264/Football-88/quickreply.png');
}

_________________

ankillien
Support Moderator
Support Moderator

Posts: 2428
Language: English, HTML, CSS, JScript
Location: home.php?id=bedroom
Country:
Join date: 2008-07-13

Back to top Go down

Solved Re: Quick reply/Reply box code

Post by Laughing Assassin on November 4th 2009, 1:07 pm

Cheers that works a treat.

Laughing Assassin
Forumotion Member

Posts: 52
Language: English
Country:
Join date: 2009-09-18

http://legacyofassassins.forumotion.com/forum.htm

Back to top Go down

Solved Re: Quick reply/Reply box code

Post by HavocPkz on November 4th 2009, 2:12 pm

ankillien wrote:Hello!

I got a fix for this Razz
Use this code for quick reply style. It won't affect the 'post reply' page Wink

Code:
#quick_reply textarea.post {
  color : #ededed;
  font: normal 11px Verdana,Arial,Helvetica,sans-serif;
  border-color : #ededed;
  background-image: url('http://i49.photobucket.com/albums/f264/Football-88/quickreply.png');
}


So this replaces the previous code?
If so, thank you so much for the fix! Smile

--EDIT--
Eh.. That didn't work. No image comes up over that code:


--EDIT 2--
Actually, I tried putting the other code back in and nothing shows up now. o.O
Even if I click "Add Reply" it only shows a sliver of it:

HavocPkz
Forumotion Member

Male
Posts: 60
Age: 17
Language: English
Location: Virginia
Country:
Join date: 2009-09-17

http://havocpkz.darkbb.com

Back to top Go down

Solved Re: Quick reply/Reply box code

Post by ankillien on November 4th 2009, 7:30 pm

You need to remove the previous code that you were using.
Put this code in place of that.

_________________

ankillien
Support Moderator
Support Moderator

Posts: 2428
Language: English, HTML, CSS, JScript
Location: home.php?id=bedroom
Country:
Join date: 2008-07-13

Back to top Go down

Solved Re: Quick reply/Reply box code

Post by HavocPkz on November 4th 2009, 10:57 pm

Even when I did that it didn't work.

HavocPkz
Forumotion Member

Male
Posts: 60
Age: 17
Language: English
Location: Virginia
Country:
Join date: 2009-09-17

http://havocpkz.darkbb.com

Back to top Go down

Solved Re: Quick reply/Reply box code

Post by Laughing Assassin on November 5th 2009, 3:22 am

i'll let the pic do the talking



EDIT: just seen possible problem, i noticed on your pic that you had selected this totally changes the chatbox, try putting in code and change the box edit mode.

Laughing Assassin
Forumotion Member

Posts: 52
Language: English
Country:
Join date: 2009-09-18

http://legacyofassassins.forumotion.com/forum.htm

Back to top Go down

Solved Re: Quick reply/Reply box code

Post by ankillien on November 5th 2009, 3:52 am

Nice to know it works for you Dawa

I don't think the A/A button can changes the CSS classes, so it cannot be the problem. I doubt if HavocPkz has completely removed the previous code or some part remains there blackeye

_________________

ankillien
Support Moderator
Support Moderator

Posts: 2428
Language: English, HTML, CSS, JScript
Location: home.php?id=bedroom
Country:
Join date: 2008-07-13

Back to top Go down

Solved Re: Quick reply/Reply box code

Post by Laughing Assassin on November 5th 2009, 4:26 am

just to show what i mean,

before selecting



after selecting



so worth checking.

Laughing Assassin
Forumotion Member

Posts: 52
Language: English
Country:
Join date: 2009-09-18

http://legacyofassassins.forumotion.com/forum.htm

Back to top Go down

Solved Re: Quick reply/Reply box code

Post by ankillien on November 5th 2009, 6:41 am

hmmm...that makes sense. It happens because after clicking A/A button tries to preview the post which does not have any background so it removes the images we added via CSS.

_________________

ankillien
Support Moderator
Support Moderator

Posts: 2428
Language: English, HTML, CSS, JScript
Location: home.php?id=bedroom
Country:
Join date: 2008-07-13

Back to top Go down

Solved Re: Quick reply/Reply box code

Post by HavocPkz on November 5th 2009, 6:54 am

Laughing Assasin wrote:EDIT: just seen possible problem, i noticed on your pic that you had selected this totally changes the chatbox, try putting in code and change the box edit mode.


Yupp.. That was it. Sorry for such confusion guys, this is now solved. Smile
(unless you can tell me what the edit would be for the "Add Reply" reply box. Just to add an extra image. Wink

But anyways, thank you so much for your help!

HavocPkz
Forumotion Member

Male
Posts: 60
Age: 17
Language: English
Location: Virginia
Country:
Join date: 2009-09-17

http://havocpkz.darkbb.com

Back to top Go down

Solved Re: Quick reply/Reply box code

Post by ankillien on November 5th 2009, 7:02 am

For add reply box...

Code:
#text_editor_textarea {
background : url(IMAGE URL HERE);
}


Glad we could help you Very Happy

_________________

ankillien
Support Moderator
Support Moderator

Posts: 2428
Language: English, HTML, CSS, JScript
Location: home.php?id=bedroom
Country:
Join date: 2008-07-13

Back to top Go down

Solved Re: Quick reply/Reply box code

Post by HavocPkz on November 5th 2009, 11:36 am

Again, thank you all so much. Smile
Marked as solved.

HavocPkz
Forumotion Member

Male
Posts: 60
Age: 17
Language: English
Location: Virginia
Country:
Join date: 2009-09-17

http://havocpkz.darkbb.com

Back to top Go down

Solved Re: Quick reply/Reply box code

Post by ankillien on November 5th 2009, 11:36 pm

Solved > Locked

_________________

ankillien
Support Moderator
Support Moderator

Posts: 2428
Language: English, HTML, CSS, JScript
Location: home.php?id=bedroom
Country:
Join date: 2008-07-13

Back to top Go down

View previous topic View next topic Back to top


Permissions of this forum:
You cannot reply to topics in this forum