Categories
Vanilla 1.1.4 is a product of Lussumo. More Information: Documentation, Community Support.
-
- CommentTimeFeb 21st 2008
OK... my web-knowledge is close to zero... so how do you get those little tiny pictures which appear next to the URL in web browsers? Most sites have them these days... how? -
- CommentAuthorAnthony
- CommentTimeFeb 21st 2008 edited
Create a 15X15 pixel .ico (an icon file) and name it ''favicon.ico'' and place it in your root directory of your site.
Al la mine: http://www.johnpowellcomposer.com/favicon.ico (actually, mines 30X30, it resizes it!) -
- CommentAuthorAnthony
- CommentTimeFeb 21st 2008
If you're having trouble creating the the ico file then use this site:
http://www.htmlkit.com/services/favicon/
Basically create a jpg or bmp or whatever, upload it and it'll convert it for you. -
- CommentTimeFeb 21st 2008
Excellent, thank you! -
- CommentTimeFeb 21st 2008
You're a good student Anthony.Kazoo -
- CommentTimeFeb 22nd 2008
SWEET!Love Maintitles. It's full of Wanders. -
- CommentAuthorAnthony
- CommentTimeFeb 22nd 2008
Bregt wrote
You're a good student Anthony.
Taught by the master. -
- CommentAuthorAnthony
- CommentTimeOct 17th 2011
Bregt, any idea how they've done the angled menu here?
http://www.brusselsphilharmonic.be/
It's NOT an image! -
- CommentTimeOct 17th 2011 edited
Ant, that's a CSS3 property. It's the rotate function on the transform property (-moz-transform in Firefox). It's on the div-tag with id 'calendar'. I don't know if you use the Firefug plugin (for Firefox). Then you can select an element on a web page and see its HTML and CSS. I can't work without it. Opens via the F12 button on Windows.
When you view the same site in IE8 or lower (or IE9 with IE8 mode), you'll see that the months are horizontal because those browsers do not support this property yet. Graceful degradation.Kazoo -
- CommentAuthorAnthony
- CommentTimeOct 17th 2011
Gotcha, I'm using the Web Developer Toolbar but Firebug is something I've been meaning to start using for a while.
Cheers! -
- CommentAuthorAnthony
- CommentTimeOct 19th 2011
Took a day off work to just focus on website stuff today. Got a pre-loading image and rotating banner script working.
Tip (although maybe on the wrong forum):
Preload an image by setting it as the background of a CSS class. Stick in a div with that class at the bottom of the page and just to be safe set the X and Y position of the image to -9999px. Then if you do need the image (e.g. to appear on a hyperlink rollover) it's already in the cache so no disappearing picture while the rollover loads!
:geek: -
- CommentTimeOct 20th 2011
Hey, from what I understand of that (roughly 53.667%), that's actually pretty cool!'no passion nor excitement here, despite all the notes and musicians' ~ Falkirkbairn -
- CommentAuthorAnthony
- CommentTimeOct 26th 2011
How do I remove shadow around the edges of form buttons and fields? -
- CommentAuthorAnthony
- CommentTimeOct 28th 2011 edited
Fixed the above.
How can I group a bit of text and an image in separate cells so when you mouse over one the other one is also affected?
e.g. below
http://www.michaelgiacchinomusic.com/te … racks.html
Whether you mouse over a cover or a title I want the rollover effect to apply to both, rather than just the one you mouse over. I've had to use a table for a reason and can't put the text and image in the same cell as it doesn't display properly on IE. -
- CommentTimeOct 28th 2011 edited
How did you solve the above (I did not see your question untill now?). I'd have used border-width and border-style properties.
As for your last question, you put them in the same <a> so that's great already. Then you can choose your selectors like this:
Not hovered:
a {text-decoration:none;}
a span {text-decoration:none;}
a img {border:1px solid #333;}
Hovered:
a:hover {text-decoration:none;}
a:hover img {border-color:#fff;}
a:hover span {text-decoration:underline;}
Or something like that, if it is that what you mean.Kazoo -
- CommentAuthorAnthony
- CommentTimeOct 28th 2011
That's what I thought, but if you expand the TV tab you'll see that two of the Lost soundtracks don't display correctly (text starts to the right of the image instead of below). This happens on ALL of them on IE.
A <br> doesn't seem to fix it. I'm just trying the separate cell idea but I don't think it's going to work. -
- CommentTimeOct 28th 2011 edited
I don't see problems in my IE Ant. An option is to let the span appear as a block element (which takes starts at a new line). Use span {display:block;}.
Best is to leave out the table completely, and use floating <div>'s.
<div class="cover">
<a href="" title="">
<img src="" alt="" />
<span>text</span>
</a>
</div>
<div class="reset"></div>
(numbers are examples)
.cover {float:left;width:200px;min-height:220px;}
.cover a {text-decoration:none;}
.cover a span {text-decoration:none;}
.cover a img {border:1px solid #333;}
Hovered:
.cover a:hover {text-decoration:none;}
.cover a:hover img {border-color:#fff;}
.cover a:hover span {text-decoration:underline;}
.reset {clear:both;}Kazoo -
- CommentAuthorAnthony
- CommentTimeOct 28th 2011
I tried using divs but it loses the animation when opening/closing the tabs.
I've fixed the design now but as you can see the covers are in one row and the titles in the row below. Is there any way I can "link them together"?
http://www.michaelgiacchinomusic.com/te … racks.html -
- CommentAuthorAnthony
- CommentTimeOct 28th 2011 edited
Ooh also another weird thing (I think it's to do with the background image) - do you see the distortion around the cell borders even though they are turned off? You can see the outline if you look carefully. -
- CommentTimeOct 28th 2011
If you can wait, I'll have a better look tomorrow. Now at work and I can't look into it.Kazoo -
- CommentTimeOct 28th 2011
Why do I keep checking this thread? I know that I am going to understand nothing of what is being said.The views expressed in this post are entirely my own and do not reflect the opinions of maintitles.net, or for that matter, anyone else. http://www.racksandtags.com/falkirkbairn -
- CommentTimeOct 28th 2011
'no passion nor excitement here, despite all the notes and musicians' ~ Falkirkbairn -
- CommentAuthorAnthony
- CommentTimeOct 28th 2011
To be fair, Southall's initial post started it off in English and it quickly descended into madness. -
- CommentAuthorAnthony
- CommentTimeOct 30th 2011
Good news Bregt, setting the table display to Block solved the link problem.
How can I set the images so they all vertically align to the top of each cell? I've never understood this property. -
- CommentTimeOct 30th 2011 edited
Does "vertical-align: top;" not work?
I'd try the floating div solution, because that works much smoother. If you need to add more covers, you just have to add a div at the end and it'll work. For a table you need to add a new cell and sometimes a new row, which is not as ... neat.Kazoo -
- CommentAuthorAnthony
- CommentTimeNov 12th 2011
I don't know why this works, but I've just spent the past half hour trying to figure out this "bug".
http://piddmedia.com/tutorials/how-to-g … n-firefox/ -
- CommentAuthorAnthony
- CommentTimeNov 14th 2011
Bregt, help!
Why does something which works fine on every other browser I've tried, break on IE7 and below.
Table css: www.michaelgiacchinomusic.com/test/Spry … ePanel.css -
- CommentAuthorAnthony
- CommentTimeNov 15th 2011
Why does Opera change the font weight of visited hyperlinks? Well, technically it's not the font weight as I've checked, but links are appearing differently (normal instead of bold) once they are visited. I is confused. -
- CommentAuthorAnthony
- CommentTimeNov 15th 2011 edited
Fixed that last one myself. Still can't conquer the IE7 problem though. God, where are you? -
- CommentAuthorTimmer
- CommentTimeNov 15th 2011
Anthony wrote
Fixed that last one myself. Still can't conquer the IE7 problem though. God, where are you?
Here I am! Unfortunately I gave up doing miracles about 2000 years ago so I'm afraid you're on your own son.On Friday I ate a lot of dust and appeared orange near the end of the day ~ Bregt