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, 22h08   #1
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 28/03/2008, 00h05   #2
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, 01h34   #3
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, 01h48   #4
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, 02h06   #5
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, 02h28   #6
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, 02h29   #7
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, 02h37   #8
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, 02h47   #9
paracdo@gmail.com
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Alignment of 'editbox'

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


Ok thnx, do you got any suggestions that I could try?

Thnx
Pieter
  Réponse avec citation
Vieux 28/03/2008, 03h39   #10
paracdo@gmail.com
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Alignment of 'editbox'

On 28 mrt, 01:06, Gus Richter <gusrich...@netscape.net> wrote:
> rf wrote:
> > <para...@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- Tekst uit oorspronkelijk bericht niet weergeven -
>
> - Tekst uit oorspronkelijk bericht weergeven -


Kicked out the "clear: both;", but it still doesn't work...
  Réponse avec citation
Vieux 28/03/2008, 03h41   #11
paracdo@gmail.com
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Alignment of 'editbox'

On 28 mrt, 01:06, Gus Richter <gusrich...@netscape.net> wrote:
> rf wrote:
> > <para...@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- Tekst uit oorspronkelijk bericht niet weergeven -
>
> - Tekst uit oorspronkelijk bericht weergeven -


Kicked out the "clear: both;", but it still doesn't work...
  Réponse avec citation
Vieux 28/03/2008, 03h49   #12
rf
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Alignment of 'editbox'


<paracdo@gmail.com> wrote in message
news:fcac1b5a-e25e-4cc9-a652-e9ab64671096@i7g2000prf.googlegroups.com...
> On 28 mrt, 01:06, Gus Richter <gusrich...@netscape.net> wrote:
>> rf wrote:
>> > <para...@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- Tekst uit oorspronkelijk bericht niet weergeven -
>>
>> - Tekst uit oorspronkelijk bericht weergeven -

>
> Kicked out the "clear: both;", but it still doesn't work...


It worked for me.

--
Richard.


  Réponse avec citation
Vieux 28/03/2008, 03h49   #13
rf
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Alignment of 'editbox'


<paracdo@gmail.com> wrote in message
news:f7a6380a-2399-4229-b991-c66d7000d87c@a22g2000hsc.googlegroups.com...
> On 28 mrt, 01:06, Gus Richter <gusrich...@netscape.net> wrote:
>> rf wrote:
>> > <para...@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- Tekst uit oorspronkelijk bericht niet weergeven -
>>
>> - Tekst uit oorspronkelijk bericht weergeven -

>
> Kicked out the "clear: both;", but it still doesn't work...



It worked for me.

--
Richard.


  Réponse avec citation
Vieux 28/03/2008, 03h49   #14
rf
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Alignment of 'editbox'


<paracdo@gmail.com> wrote in message
news:6c96d1a3-7a0b-4652-9e91-c6d94e03237d@d62g2000hsf.googlegroups.com...
> 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?


Remove the clear: both;

--
Richard.


  Réponse avec citation
Vieux 28/03/2008, 03h50   #15
rf
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Alignment of 'editbox'


<paracdo@gmail.com> wrote in message
news:e3ddad8f-5a0b-4c95-84a0-2afd0ed418fa@a23g2000hsc.googlegroups.com...
> 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?



Remove the clear: both;

--
Richard.


  Réponse avec citation
Vieux 28/03/2008, 03h50   #16
rf
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Alignment of 'editbox'


<paracdo@gmail.com> wrote in message
news:21b3f7be-787e-4aea-b47d-0766bf5ca168@m3g2000hsc.googlegroups.com...
> >Might have something to do with the clear: both in the #toolbar rule. As
> >far
>>as I can see it's working as specified.

>
> Ok thnx, do you got any suggestions that I could try?



Remove the clear: both;

--
Richard.


  Réponse avec citation
Vieux 28/03/2008, 05h39   #17
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:f7a6380a-2399-4229-b991-c66d7000d87c@a22g2000hsc.googlegroups.com...
>> On 28 mrt, 01:06, Gus Richter <gusrich...@netscape.net> wrote:
>>> rf wrote:
>>>> <para...@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- Tekst uit oorspronkelijk bericht niet weergeven -
>>>
>>> - Tekst uit oorspronkelijk bericht weergeven -

>> Kicked out the "clear: both;", but it still doesn't work...

>
>
> It worked for me.


For me too.

--
Gus

  Réponse avec citation
Vieux 28/03/2008, 05h39   #18
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:fcac1b5a-e25e-4cc9-a652-e9ab64671096@i7g2000prf.googlegroups.com...
>> On 28 mrt, 01:06, Gus Richter <gusrich...@netscape.net> wrote:
>>> rf wrote:
>>>> <para...@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- Tekst uit oorspronkelijk bericht niet weergeven -
>>>
>>> - Tekst uit oorspronkelijk bericht weergeven -

>> Kicked out the "clear: both;", but it still doesn't work...

>
> It worked for me.


For me too.

--
Gus

  Réponse avec citation
Vieux 28/03/2008, 13h17   #19
paracdo@gmail.com
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Alignment of 'editbox'

On 28 mrt, 04:39, Gus Richter <gusrich...@netscape.net> wrote:
> rf wrote:
> > <para...@gmail.com> wrote in message
> >news:fcac1b5a-e25e-4cc9-a652-e9ab64671096@i7g2000prf.googlegroups.com...
> >> On 28 mrt, 01:06, Gus Richter <gusrich...@netscape.net> wrote:
> >>> rf wrote:
> >>>> <para...@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- Tekst uit oorspronkelijk bericht niet weergeven -

>
> >>> - Tekst uit oorspronkelijk bericht weergeven -
> >> Kicked out the "clear: both;", but it still doesn't work...

>
> > It worked for me.

>
> For me too.
>
> --
> Gus- Tekst uit oorspronkelijk bericht niet weergeven -
>
> - Tekst uit oorspronkelijk bericht weergeven -


The "clear: both;" is now removed, but it doens't seem to work for me.
Do you guys see a difference right now?

Pieter
  Réponse avec citation
Vieux 28/03/2008, 13h38   #20
rf
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Alignment of 'editbox'


<paracdo@gmail.com> wrote in message
news:6365f166-a490-448d-b3d7-52724fcea6dc@z38g2000hsc.googlegroups.com...
> On 28 mrt, 04:39, Gus Richter <gusrich...@netscape.net> wrote:
>> rf wrote:


> The "clear: both;" is now removed,


No, it is not, at least from
http://en.full-ops.be/index.php?titl...na&action=edit

I see it quite clearly in there, in the DOM. Remove clear: both; it and your
page will work. Leave it in there and it won't.

Note, I use firebug to determine this. I do not look at your CSS, that is
your job :-)

BTW you may wish to reconsider that IP address recording paragraph, it has
no meaning at all. An IP address does *not* identify an individual.

--
Richard.


  Réponse avec citation
Vieux 28/03/2008, 14h01   #21
Gregor Kofler
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Alignment of 'editbox'

paracdo@gmail.com meinte:

> The "clear: both;" is now removed, but it doens't seem to work for me.
> Do you guys see a difference right now?


You have to remove the right "clear: both". The one of the div with id
"toolbar". Do yourself (and the others here) a favor and use Firebug.
Took me about 15 seconds to figure out which element, which property and
to verify the result if the clear is removed.

Gregor


--
http://photo.gregorkofler.at ::: Landschafts- und Reisefotografie
http://web.gregorkofler.com ::: meine JS-Spielwiese
http://www.image2d.com ::: Bildagentur für den alpinen Raum
  Réponse avec citation
Vieux 28/03/2008, 14h01   #22
paracdo@gmail.com
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Alignment of 'editbox'

On 28 mrt, 12:38, "rf" <r...@invalid.com> wrote:
> <para...@gmail.com> wrote in message
>
> news:6365f166-a490-448d-b3d7-52724fcea6dc@z38g2000hsc.googlegroups.com...
>
> > On 28 mrt, 04:39, Gus Richter <gusrich...@netscape.net> wrote:
> >> rf wrote:

> > The "clear: both;" is now removed,

>
> No, it is not, at least fromhttp://en.full-ops.be/index.php?titl...na&action=edit
>
> I see it quite clearly in there, in the DOM. Remove clear: both; it and your
> page will work. Leave it in there and it won't.
>
> Note, I use firebug to determine this. I do not look at your CSS, that is
> your job :-)
>
> BTW you may wish to reconsider that IP address recording paragraph, it has
> no meaning at all. An IP address does *not* identify an individual.
>
> --
> Richard.


Mhh something is definitely wrong here...the "clear: both;" really is
removed...(maybe cache problem?), and I don't record the IP's
(yet) ....do you think you could email me a screenshot of what you
see?

note: I'm leaving for a weekend holiday right now, so I won't be
posting here for a few days, I will be back on Tuesday. Thanks for the
!
  Réponse avec citation
Vieux 31/03/2008, 20h01   #23
paracdo@gmail.com
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Alignment of 'editbox'

On 28 mrt, 14:01, Gregor Kofler <use...@gregorkofler.at> wrote:
> para...@gmail.com meinte:
>
> > The "clear: both;" is now removed, but it doens't seem to work for me.
> > Do you guys see a difference right now?

>
> You have to remove the right "clear: both". The one of the div with id
> "toolbar". Do yourself (and the others here) a favor and use Firebug.
> Took me about 15 seconds to figure out which element, which property and
> to verify the result if the clear is removed.
>
> Gregor
>
> --http://photo.gregorkofler.at::: Landschafts- und Reisefotografiehttp://web.gregorkofler.com ::: meine JS-Spielwiesehttp://www.image2d.com ::: Bildagentur für den alpinen Raum


I removed the "clear: both" but it doesn't seem to work. Anybody any
idea what the solution could be?
  Réponse avec citation
Vieux 31/03/2008, 22h09   #24
Gregor Kofler
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Alignment of 'editbox'

paracdo@gmail.com meinte:

>>> The "clear: both;" is now removed, but it doens't seem to work for me.
>>> Do you guys see a difference right now?

>> You have to remove the right "clear: both". The one of the div with id
>> "toolbar". Do yourself (and the others here) a favor and use Firebug.
>> Took me about 15 seconds to figure out which element, which property and
>> to verify the result if the clear is removed.
>>
>> Gregor
>>
>> --http://photo.gregorkofler.at::: Landschafts- und Reisefotografiehttp://web.gregorkofler.com ::: meine JS-Spielwiesehttp://www.image2d.com ::: Bildagentur für den alpinen Raum


Could you please not quote signatures...

> I removed the "clear: both"


No you didn't. How can I find that out within seconds on *your* page,
and you still haven't figured it out?

Well, here it comes: It's the "clear: both" on line 13 in shared.css. Or
remove the #wpTextbox1 from this very line.

> Anybody any idea what the solution could be?


Get the proper tools. But you've been told that before, and you're
obviously not willing to follow recommendations and advices. And in
anticipation of your next question: The answer is "Firebug".

Gregor


--
http://photo.gregorkofler.at ::: Landschafts- und Reisefotografie
http://web.gregorkofler.com ::: meine JS-Spielwiese
http://www.image2d.com ::: Bildagentur für den alpinen Raum
  Réponse avec citation
Vieux 01/04/2008, 00h07   #25
Gus Richter
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Alignment of 'editbox'

paracdo@gmail.com wrote:
> On 28 mrt, 14:01, Gregor Kofler <use...@gregorkofler.at> wrote:
>> para...@gmail.com meinte:
>>
>>> The "clear: both;" is now removed, but it doens't seem to work for me.
>>> Do you guys see a difference right now?

>> You have to remove the right "clear: both". The one of the div with id
>> "toolbar". Do yourself (and the others here) a favor and use Firebug.
>> Took me about 15 seconds to figure out which element, which property and
>> to verify the result if the clear is removed.
>>
>> Gregor
>>
>> --http://photo.gregorkofler.at::: Landschafts- und Reisefotografiehttp://web.gregorkofler.com ::: meine JS-Spielwiesehttp://www.image2d.com ::: Bildagentur für den alpinen Raum

>
> I removed the "clear: both" but it doesn't seem to work. Anybody any
> idea what the solution could be?


<http://en.full-ops.be/skins/common/shared.css>
has the line commented out.

<http://en.full-ops.be/skins/common/shared.css?97>
which is the one being called is not.

--
Gus
  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 02h59.


Édité par : vBulletin® version 3.7.3
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 ©2000-2008
Ad Management by RedTyger