Advertisement:

Author Topic: Quick reply box 3 screens wide?  (Read 7521 times)

Offline dsantana

  • Jr. Member
  • **
  • Posts: 146
    • Vintage Jet Boat Forum
Quick reply box 3 screens wide?
« on: August 08, 2011, 10:58:21 PM »
Can anyone tell me why the quick reply box would be 3 times wider than my forum and where I might go to fix it?
SMF 2.0 | VJB2.0 Custom Theme | Simple Portal 2.3.3

Offline emanuele

  • Developer
  • SMF Super Hero
  • *
  • Posts: 11,872
  • Gender: Male
  • Because Orange is Orange
Re: Quick reply box 3 screens wide?
« Reply #1 on: August 09, 2011, 05:18:35 AM »
What browser (and version...and maybe operating system) are you using?
Are you using the default theme or a custom one?
Try using the default if you are using another one and try cleaning the cache of your browser.

I think it could be an issue with css and the fix for the number of rows in 2.0 final, updating your custom theme and cleaning the cache should fix it.

Aiutateci ad aiutarvi: spiegate bene il vostro problema: no, "non funziona" non è una spiegazione!!
1) Cosa fai,
2) cosa ti aspetti,
3) cosa ottieni.

Offline Illori

  • Doc Writer
  • SMF Master
  • *
  • Posts: 25,774
Re: Quick reply box 3 screens wide?
« Reply #2 on: August 09, 2011, 05:47:31 AM »
take a look at
Hello there.

Try with this, in index.css change:

Code: [Select]
#quickReplyOptions form textarea
{
    height: 100px;
    margin: 0.25em 0 1em 0;
}


to this:

Code: [Select]
#quickReplyOptions form textarea
{
    height: 100px;
    width: 635px;
    max-width: 100%;
    min-width: 100%;
    margin: 0.25em 0 1em 0;
}

Also, if your theme isnt built for 2.0 (but it is for RC5) please read this topic with tip to update theme from RC5 to 2.0 version:
http://www.simplemachines.org/community/index.php?topic=437428.0

Regards.

Offline dsantana

  • Jr. Member
  • **
  • Posts: 146
    • Vintage Jet Boat Forum
Re: Quick reply box 3 screens wide?
« Reply #3 on: August 09, 2011, 10:05:53 AM »
I changed the custom theme to that code... The default already had that code in it.
It didn't help though.. This is what was in the custom theme...
Code: [Select]
{
width: 91%;
height: 100px;
margin: 0.25em 0 1em 0;
}
That appears as though it should work too?
SMF 2.0 | VJB2.0 Custom Theme | Simple Portal 2.3.3

Offline dsantana

  • Jr. Member
  • **
  • Posts: 146
    • Vintage Jet Boat Forum
Re: Quick reply box 3 screens wide?
« Reply #4 on: August 09, 2011, 10:25:52 AM »
What browser (and version...and maybe operating system) are you using?
Are you using the default theme or a custom one?
Try using the default if you are using another one and try cleaning the cache of your browser.

I think it could be an issue with css and the fix for the number of rows in 2.0 final, updating your custom theme and cleaning the cache should fix it.
Google Chrome... And I just looked at it in IE and it's fine... So it's a browser issue?
SMF 2.0 | VJB2.0 Custom Theme | Simple Portal 2.3.3

Offline emanuele

  • Developer
  • SMF Super Hero
  • *
  • Posts: 11,872
  • Gender: Male
  • Because Orange is Orange
Re: Quick reply box 3 screens wide?
« Reply #5 on: August 09, 2011, 10:29:59 AM »
Did you clean the cache?
Antechinus tested it with Chrome, so it should work.

Aiutateci ad aiutarvi: spiegate bene il vostro problema: no, "non funziona" non è una spiegazione!!
1) Cosa fai,
2) cosa ti aspetti,
3) cosa ottieni.

Offline dsantana

  • Jr. Member
  • **
  • Posts: 146
    • Vintage Jet Boat Forum
Re: Quick reply box 3 screens wide?
« Reply #6 on: August 09, 2011, 10:40:52 AM »
Yes I did clear the cache...
The correct location for index.css would be in the default theme and my custom theme correct? Or is there another index.css file I'm missing?
SMF 2.0 | VJB2.0 Custom Theme | Simple Portal 2.3.3

Offline Illori

  • Doc Writer
  • SMF Master
  • *
  • Posts: 25,774
Re: Quick reply box 3 screens wide?
« Reply #7 on: August 09, 2011, 10:43:40 AM »
it has to be in index.css for all themes that are used on your forum.

Offline dsantana

  • Jr. Member
  • **
  • Posts: 146
    • Vintage Jet Boat Forum
Re: Quick reply box 3 screens wide?
« Reply #8 on: August 09, 2011, 01:22:12 PM »
So I went to my test forum and started uninstalling things...
I uninstalled everything and still had the problem.
The only this that was left was the Ostara theme.
I changed back to the default Curve theme and it was good.
So what in the theme could be screwing it up?

Thanks for all your help
SMF 2.0 | VJB2.0 Custom Theme | Simple Portal 2.3.3

Offline Illori

  • Doc Writer
  • SMF Master
  • *
  • Posts: 25,774
Re: Quick reply box 3 screens wide?
« Reply #9 on: August 09, 2011, 01:26:56 PM »
you need to add the above code to the index.css file for that theme.

Offline briggz5d

  • Semi-Newbie
  • *
  • Posts: 47
  • Gender: Male
  • Ngbuzz Forum
    • soki.briggs on Facebook
    • @Briggz5d on Twitter
    • Ngbuzz Forum
Re: Quick reply box 3 screens wide?
« Reply #10 on: December 21, 2011, 12:56:28 AM »
thanks  - this fixed my problem too.. my quick reply box was spanning out too long...
maybe making quick reply visible and always open will encourage my readers to comment.

Offline Traxx

  • Newbie
  • *
  • Posts: 6
Re: Quick reply box 3 screens wide?
« Reply #11 on: January 29, 2012, 06:44:43 PM »
ok this worked for me but what about when you post a new thread ? whats the fix for that?

Offline Illori

  • Doc Writer
  • SMF Master
  • *
  • Posts: 25,774
Re: Quick reply box 3 screens wide?
« Reply #12 on: January 29, 2012, 06:46:05 PM »
please open a separate thread in the proper support thread.

Offline emanuele

  • Developer
  • SMF Super Hero
  • *
  • Posts: 11,872
  • Gender: Male
  • Because Orange is Orange
Re: Quick reply box 3 screens wide?
« Reply #13 on: January 30, 2012, 05:59:37 AM »
Add this:
Code: [Select]
.editor
{
width: 100%;
max-width: 100%;
min-width: 100%;
}

at the beginning of your editor.css file.
Of course as usual empty the cache to see the changes. ;)

Not sure if it is necessary, but you can also change:
Code: [Select]
.richedit_resize
{
height: 5px;
font-size: 0;
background: #eee url(../images/bbc/resize-handle.gif) no-repeat 50% 1px;
border: 1px solid #ddd;
border-top-width: 0;
cursor: s-resize;
}

to:
Code: [Select]
.richedit_resize
{
height: 5px;
font-size: 0;
background: #eee url(../images/bbc/resize-handle.gif) no-repeat 50% 1px;
border: 1px solid #ddd;
border-top-width: 0;
cursor: s-resize;
width: 100%;
padding: 0 2px;
}

Aiutateci ad aiutarvi: spiegate bene il vostro problema: no, "non funziona" non è una spiegazione!!
1) Cosa fai,
2) cosa ti aspetti,
3) cosa ottieni.

Offline Traxx

  • Newbie
  • *
  • Posts: 6
Re: Quick reply box 3 screens wide?
« Reply #14 on: February 04, 2012, 06:32:24 PM »
thanks for this fix

Offline alchimia

  • Jr. Member
  • **
  • Posts: 119
Re: Quick reply box 3 screens wide?
« Reply #15 on: May 15, 2012, 04:56:44 PM »
where is editor.css file?

Offline emanuele

  • Developer
  • SMF Super Hero
  • *
  • Posts: 11,872
  • Gender: Male
  • Because Orange is Orange
Re: Quick reply box 3 screens wide?
« Reply #16 on: May 15, 2012, 05:08:31 PM »
/Themes/default/css/
or
/Themes/{directory_of_your_theme}/css
;)

Aiutateci ad aiutarvi: spiegate bene il vostro problema: no, "non funziona" non è una spiegazione!!
1) Cosa fai,
2) cosa ti aspetti,
3) cosa ottieni.