PHWinfo banniere

Titres
PORTAIL ANNUAIRE ARTICLES COMPARATEUR HÉBERGEURS DEVIS FORUMS RÉDUCTEUR D'URL
Précédent   PHWinfo > Autres forums > Forum Programmation & Conception > comp.info.authoring.CSS > Alignment of 'editbox'
S'inscrire FAQ Membres Recherche Messages du jour Marquer les forums comme lus
Alignment of 'editbox'

Réponse
 
LinkBack Outils de la discussion
Vieux 27/03/2008, 21h08   #1 (permalink)
paracdo@gmail.com
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Alignment of 'editbox'

Hi Guys,

I'm trying to make a custom Skin for my wiki (MediaWiki software).
Everything is working fine except the alignment of the 'editbox' on
the 'editmodus'.

You can see it right here:
http://en.full-ops.be/index.php?titl...na&action=edit

It appears always beneath the last menubox on the left.

Where the text on the regular page works just fine:
http://en.full-ops.be/Testpagina

What am I doing wrong? The editbox appears normally when using the
standard MediaWiki skin. Tjis is my current CSS-code : http://en.full-ops.be/CurrentCss

Hope to hear from you soon!
  Réponse avec citation
Vieux 27/03/2008, 23h05   #2 (permalink)
Bergamot
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Alignment of 'editbox'

paracdo@gmail.com wrote:
>
> Everything is working fine except the alignment of the 'editbox' on
> the 'editmodus'.
>
> http://en.full-ops.be/index.php?titl...na&action=edit
>
> It appears always beneath the last menubox on the left.


textarea (line 189)
{
width: 100%;
}

Width does not include padding or borders, so the width may actually be
something like 101% with those added, causing it to overflow and slide
under the left column. Try changing the width to 98% and see what happens.

--
Berg
  Réponse avec citation
Vieux 28/03/2008, 00h34   #3 (permalink)
paracdo@gmail.com
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Alignment of 'editbox'

On 27 mrt, 23:05, Bergamot <berga...@visi.com> wrote:
>
> textarea (line 189)
> {
> width: 100%;
>
> }
>
> Width does not include padding or borders, so the width may actually be
> something like 101% with those added, causing it to overflow and slide
> under the left column. Try changing the width to 98% and see what happens.
>
> --
> Berg


Hi Berg,

Thanks for the reply but the width doesn't seem the problem. I've
tried changing it to 90% but it still stays the same.

Pieter
  Réponse avec citation
Vieux 28/03/2008, 00h48   #4 (permalink)
rf
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Alignment of 'editbox'

<paracdo@gmail.com> wrote in message
news:6d3a0452-6f48-4b46-b942-118d970bee38@e10g2000prf.googlegroups.com...
> Hi Guys,
>
> I'm trying to make a custom Skin for my wiki (MediaWiki software).
> Everything is working fine except the alignment of the 'editbox' on
> the 'editmodus'.
>
> You can see it right here:
> http://en.full-ops.be/index.php?titl...na&action=edit
>
> It appears always beneath the last menubox on the left.


Might have something to do with the clear: both in the #toolbar rule. As far
as I can see it's working as specified.

--
Richard.


  Réponse avec citation
Vieux 28/03/2008, 01h06   #5 (permalink)
Gus Richter
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Alignment of 'editbox'

rf wrote:
> <paracdo@gmail.com> wrote in message
> news:6d3a0452-6f48-4b46-b942-118d970bee38@e10g2000prf.googlegroups.com...
>> Hi Guys,
>>
>> I'm trying to make a custom Skin for my wiki (MediaWiki software).
>> Everything is working fine except the alignment of the 'editbox' on
>> the 'editmodus'.
>>
>> You can see it right here:
>> http://en.full-ops.be/index.php?titl...na&action=edit
>>
>> It appears always beneath the last menubox on the left.

>
> Might have something to do with the clear: both in the #toolbar rule. As far
> as I can see it's working as specified.


Might also be that the clear causes "toolbar" and subsequent material to
be cleared below the floated "Menu".

Wondering why the @#$% 'editbox', 'editmodus' and 'menubox' are used to
describe the problem when they don't even exist in the markup and
stylesheet?

--
Gus

  Réponse avec citation
Vieux 28/03/2008, 01h28   #6 (permalink)
rf
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Alignment of 'editbox'


"Gus Richter" <gusrichter@netscape.net> wrote in message
newsfWdncIV0qUcq3HanZ2dnUVZ_sSlnZ2d@golden.net.. .
> rf wrote:
>> <paracdo@gmail.com> wrote in message
>> news:6d3a0452-6f48-4b46-b942-118d970bee38@e10g2000prf.googlegroups.com...
>>> Hi Guys,
>>>
>>> I'm trying to make a custom Skin for my wiki (MediaWiki software).
>>> Everything is working fine except the alignment of the 'editbox' on
>>> the 'editmodus'.
>>>
>>> You can see it right here:
>>> http://en.full-ops.be/index.php?titl...na&action=edit
>>>
>>> It appears always beneath the last menubox on the left.

>>
>> Might have something to do with the clear: both in the #toolbar rule. As
>> far as I can see it's working as specified.

>
> Might also be that the clear causes "toolbar" and subsequent material to
> be cleared below the floated "Menu".


Er, yes. It was assumed that clear: both does that.

> Wondering why the @#$% 'editbox', 'editmodus' and 'menubox' are used to
> describe the problem when they don't even exist in the markup and
> stylesheet?


No need to even look at the markup or stylesheet at all. Fire up firebug,
inspect the menu and verify (as suspected) that it is floated, look for and
find something that is causing the rest to be "below" the menu, as in
cleared. Elapsed time, less than it took me to type this paragraph, by an
order of magnitude :-)

Then again we are talking about a google groper here.

--
Richard.



  Réponse avec citation
Vieux 28/03/2008, 01h29   #7 (permalink)
paracdo@gmail.com
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Alignment of 'editbox'

On 28 mrt, 00:48, "rf" <r...@invalid.com> wrote:
>
> Might have something to do with the clear: both in the #toolbar rule. As far
> as I can see it's working as specified.
>
> --
> Richard.


Any suggestions that I could try?

Pieter
  Réponse avec citation
Vieux 28/03/2008, 01h37   #8 (permalink)
paracdo@gmail.com
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Alignment of 'editbox'

On 28 mrt, 00:48, "rf" <r...@invalid.com> wrote:
>
> Might have something to do with the clear: both in the #toolbar rule. As far
> as I can see it's working as specified.
>
> --
> Richard.


Any suggestions that I could try?

Pieter
  Réponse avec citation
Réponse


Outils de la discussion

Règles de messages
Vous ne pouvez pas créer de nouvelles discussions
Vous ne pouvez pas envoyer des réponses
Vous ne pouvez pas envoyer des pièces jointes
Vous ne pouvez pas modifier vos messages

Les balises BB sont activées : oui
Les smileys sont activés : oui
La balise [IMG] est activée : oui
Le code HTML peut être employé : non
Trackbacks are oui
Pingbacks are oui
Refbacks are oui


Fuseau horaire GMT +1. Il est actuellement 13h03.


Édité par : vBulletin® version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC5 Tous droits réservés.
Version française #16 par l'association vBulletin francophone
PHWinfo est un site Éducation Sans Frontières
Ad Management by RedTyger
©Tous droits réservés par les parties respectives
Page generated in 0,14905 seconds with 16 queries