|
|
|
#1 |
|
Messages: n/a
Hébergeur: |
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! |
|
|
|
#2 |
|
Messages: n/a
Hébergeur: |
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 |
|
|
|
#3 |
|
Messages: n/a
Hébergeur: |
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 |
|
|
|
#4 |
|
Messages: n/a
Hébergeur: |
<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. |
|
|
|
#5 |
|
Messages: n/a
Hébergeur: |
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 |
|
|
|
#6 |
|
Messages: n/a
Hébergeur: |
"Gus Richter" <gusrichter@netscape.net> wrote in message news fWdncIV0qUcq3HanZ2dnUVZ_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. |
|
|
|
#7 |
|
Messages: n/a
Hébergeur: |
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 |
|
|
|
#8 |
|
Messages: n/a
Hébergeur: |
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 |
|
|
|
#9 |
|
Messages: n/a
Hébergeur: |
>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 |
|
|
|
#10 |
|
Messages: n/a
Hébergeur: |
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... |
|
|
|
#11 |
|
Messages: n/a
Hébergeur: |
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... |
|
|
|
#12 |
|
Messages: n/a
Hébergeur: |
<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. |
|
|
|
#13 |
|
Messages: n/a
Hébergeur: |
<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. |
|
|
|
#14 |
|
Messages: n/a
Hébergeur: |
<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. |
|
|
|
#15 |
|
Messages: n/a
Hébergeur: |
<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. |
|
|
|
#16 |
|
Messages: n/a
Hébergeur: |
<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. |
|
|
|
#17 |
|
Messages: n/a
Hébergeur: |
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 |
|
|
|
#18 |
|
Messages: n/a
Hébergeur: |
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 |
|
|
|
#19 |
|
Messages: n/a
Hébergeur: |
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 |
|
|
|
#20 |
|
Messages: n/a
Hébergeur: |
<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. |
|
|
|
#21 |
|
Messages: n/a
Hébergeur: |
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 |
|
|
|
#22 |
|
Messages: n/a
Hébergeur: |
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 ! |
|
|
|
#23 |
|
Messages: n/a
Hébergeur: |
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? |
|
|
|
#24 |
|
Messages: n/a
Hébergeur: |
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 |
|
|
|
#25 |
|
Messages: n/a
Hébergeur: |
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 |
|
![]() |
| Outils de la discussion | |
|
|