2012-07-10 1:20, Mark Weiss wrote:
The code below is in our Moodle site.
the Is this your first time here? somehow is placed on the page
automatically. I need to know how to remove it using HTML.
It is generally much better to find out and fix the reason of a problem
than to hide its sympto
CSS:
h2: display:none; maybe?
Sent from iOS 5
On Jul 9, 2012, at 6:20 PM, Mark Weiss wrote:
> The code below is in our Moodle site.
>
> the Is this your first time here? somehow is placed on the page
> automatically. I need to know how to remove it using HTML.
>
> Is this possible?
>
>
The code below is in our Moodle site.
the Is this your first time here? somehow is placed on the page
automatically. I need to know how to remove it using HTML.
Is this possible?
Thanks
Is this your first time here?
Log-in
https://xxx.x.xxx/auth/saml/"; title="SAML">
Superviso
On 10.07.2012 02:14, Philippe Wittenbergh wrote:
Le 10 juil. 2012 à 00:40, Georg a écrit :
Case: images are resized by max-width, and sinse margin-top is a kind of constant the
images' top stays fixed at original position. What if I want some images to be
repositioned based on their center or
Le 10 juil. 2012 à 00:40, Georg a écrit :
> Case: images are resized by max-width, and sinse margin-top is a kind of
> constant the images' top stays fixed at original position. What if I want
> some images to be repositioned based on their center or any other "internal
> point" when resized -
On 07/10/2012, at 8:41 AM, Greg Wilker wrote:
> Can
> anyone tell me why the headline item "Announcements
> Available" is moving down the page?
td.classAd2 {
... deleted stuff ...
vertical-align: middle; <== this is why.
}
KathyW.
__
On 10.07.2012 00:01, Spencer, Laura Langa wrote:
URL: http://www.bcbsm.com/foundation
>
> Problem: In Mac Safari and Mac Firefox, the final navigation option,
> "RESOURCES" bumps down to a second line and it should be all on one
> line. In all PC browsers (IE, Firefox, Chrome) it renders fine.
Hello Everyone,
Other than the fact that this template is using a table for layout... Can
anyone tell me why the headline item "Announcements
Available" is moving down the page?
I know that the right column with the ad and widget is affecting things -
but it seems like I have done everything nece
On Mon, 9 Jul 2012, Spencer, Laura Langa wrote:
URL: http://www.bcbsm.com/foundation
Problem: In Mac Safari and Mac Firefox, the final navigation option,
"RESOURCES" bumps down to a second line and it should be all on one line.
In all PC browsers (IE, Firefox, Chrome) it renders fine.
In
looks to be a difference in how the font renders on the Mac, the text is
rendering wider and there isn't enough room for that last item.
several ways to fix this, two which I'll mention here each introduce their
own issues that you'll have to update:
one would be to change the LI from float: left
On Jul 6, 2012, at 6:20 PM, HallMarc Sales wrote:
> So, again:
> Change the h4 rule for line-height from 10% to 100%
> Change both top and bottom padding to 10px
> add rule margin: 0;
>
> That should make most browsers happy.
>
> The reason IE7 is clipping the top half of the of the h4 containe
John wrote:
I develop on a Mac. I realize that I can't change how the PC renders
the letterforms, but I wish I had more control over the relative size
of the type. when I see my pages on a PC, the type looks almost like
its intended for beginning readers..everything's quite a bit bigger
than I
Things such as :
html {
font-family: arial, sans-serif;
h1 {
color: #00338D;
font-family: georgia, serif;
are going to cause the text to render one way on a system
with Arial and/or George, and another way on a system without.
That almost certainly explains why it does not render
as i
On Jul 9, 2012, at 3:02 PM, Philip TAYLOR wrote:
> On which platform do you develop, John ? I develop on a PC,
> and therefore my pages look exactly as I expect on a PC;
> I have no idea (and, to be honest, little interest !) in how
> they appear on other platforms ...
I develop on a Mac. I rea
URL: http://www.bcbsm.com/foundation
Problem: In Mac Safari and Mac Firefox, the final navigation option,
"RESOURCES" bumps down to a second line and it should be all on one line.
In all PC browsers (IE, Firefox, Chrome) it renders fine.
Question: Can anyone help explain why this is happening or
I am always struck by how bad type looks when I proof my pages on a PC than on
a Mac. I think part of it is the difference between the way the two platforms
render type, but part of it also might be how I'm speccing my type...
Compared to how it looks on my Mac (any browser), the same type looks
Dear Georg,
Yes, now it's exactly as I wanted it!
Thanks so much for your help!
Best,
Ruben
> Date: Mon, 9 Jul 2012 10:24:43 +0200
> From: gunla...@c2i.net
> To: css-d@lists.css-discuss.org
> Subject: Re: [css-d] doesn't float all the way up
>
> On 09.07.2012 06:09, Ruben van den Berg wrote:
>
On 7/9/12 4:31 AM, Gergely Buday wrote:
or perhaps change
height: 100%;
to
min-height: 100%;
That did the trick, thanks.
- Gergely
You could also put the background-color on the HTML element. Good for IE 6
which does not understand min-height. :)
--
Cordially,
David
___
Case: a mediaquery is used to switch layout parameters at 600px. If I
zoom page 200% that switching takes place at
300(screen)px/600(CSS-relative)px in Trident, Gecko and Presto, but at
600(screen)px/300(CSS-relative)px in WebKit. So, in the 3 former engines
the mediaquery switching is a functi
You are declaring a font-face and you are using that same name to declare the
font. So, as far as I can tell, that seems to be ok.
The problem being, the path of the font files.
I've noticed that you are calling your fonts css twice.
On your head you are targeting fonts.css with this:
@font-fac
Case: images are resized by max-width, and sinse margin-top is a kind of
constant the images' top stays fixed at original position. What if I
want some images to be repositioned based on their center or any other
"internal point" when resized - as we can do with background images?
To a certain
I'm having some issues getting @font-face to wok on a site and I'm sure I'm
missing something simple. Its a static html site (for now) and got the font
from fontsquirrel.com. I originally had the font files in a subdirectory
and the stylesheets in another, so thought that was the problem.
- I move
On 09.07.2012 14:44, Nancy Johnson wrote:
Is there a better way to layer inline text on top of an inline image
than using position absolute?
Depends on surrounding content/elements. I nearly always use negative
margins on the image, to make it take up no space - like a background
image, and s
Is there a better way to layer inline text on top of an inline image
than using position absolute?
Thanks,
Nancy Johnson
__
css-discuss [css-d@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ
> or perhaps change
>
> height: 100%;
>
> to
>
> min-height: 100%;
That did the trick, thanks.
- Gergely
__
css-discuss [css-d@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-d
On 07/09/12 11:54, Gergely Buday wrote:
> Hi,
>
> I would like to have a main div whose height is at least the window's
> height, but extends to the end of the text if that is longer. My
> html/css code exhibits a strange error: the colour lasts only till the
> end of the window height. How can I
On 07/09/12 11:54, Gergely Buday wrote:
> Hi,
>
> I would like to have a main div whose height is at least the window's
> height, but extends to the end of the text if that is longer. My
> html/css code exhibits a strange error: the colour lasts only till the
> end of the window height. How can I
Hi,
I would like to have a main div whose height is at least the window's
height, but extends to the end of the text if that is longer. My
html/css code exhibits a strange error: the colour lasts only till the
end of the window height. How can I fix this?
http://fonts.googleapis.com/css?fami
On 09.07.2012 06:09, Ruben van den Berg wrote:
I'm starting to feel the problem is somewhere in there.
Sure, you forgot - or I forgot to tell you - to remove "overflow:
hidden" when applying "float: left" to header.
Both properties/values have the same effect on collapsing margins in
that t
29 matches
Mail list logo