Search Results

Showing results 1 to 40 of 317
Search took 0.03 seconds.
Search: Posts Made By: almostbob ; Forum: HTML and CSS and child forums
Forum: HTML and CSS 2 Days Ago
Replies: 10
Views: 339
Posted By almostbob
Try to avoid pixels for measurement
fixed sizes look like crap#container { width: 100%; float:left; background: red; display: table-row; }
#left_column { float:left; width: 75%; }
#right_column {...
Forum: HTML and CSS 3 Days Ago
Replies: 5
Views: 287
Posted By almostbob
I agree, maintaince is a b**expletive deleted**
the buttons on this page, like
'flag to quote'
drop down oncllick menus
function on different states are all css,
the possibilities approach...
Forum: HTML and CSS 4 Days Ago
Replies: 5
Views: 287
Posted By almostbob
google for css menu
navigation is another of many things flash is not good at
similar button effects can be made with css, much smaller, no overhead, no third party stuff that may not be installed...
Forum: HTML and CSS 4 Days Ago
Replies: 4
Views: 275
Posted By almostbob
(Gremlins)
Forum: HTML and CSS 5 Days Ago
Replies: 4
Views: 275
Posted By almostbob
site?
code?
else any answer will be a guess
Forum: HTML and CSS 6 Days Ago
Replies: 8
Views: 345
Posted By almostbob
for real tabular data a table is still accepted practice
Forum: HTML and CSS 6 Days Ago
Replies: 8
Views: 364
Posted By almostbob
page refresh F5 is supposed reload all the cached files,
Forum: HTML and CSS 6 Days Ago
Replies: 8
Views: 345
Posted By almostbob
<html>
<head>
<style type='text/css'>
.cont { border:black 1px solid; width:100%;}
/*css two column table*/
.l2 { width:50%; float:left; padding:0 1%; }
.r2 { width:50%; float:right; padding:0...
Forum: HTML and CSS 8 Days Ago
Replies: 3
Views: 296
Posted By almostbob
yes, you can copy the img style into your stylesheet
BUT
styles are applied in order
external style sheets
header styles
single element styles <a style='somthing'>
with the last taking...
Forum: HTML and CSS 9 Days Ago
Replies: 3
Views: 296
Posted By almostbob
look at your table code with the text removed<table width="100%" align="center" border="0" cellpadding="10" cellspacing="10">
<tr>
<td align="right"><img src="Images/PointSetProcessing.jpg"...
Forum: HTML and CSS 9 Days Ago
Replies: 2
Solved: h3 spacing
Views: 279
Posted By almostbob
h3 is a block element, </h3> ends the block with whatever margins and padding are set for the h3 and the adjacent element
</h3><br> is 2 Breaks, thats what you got
Forum: HTML and CSS 12 Days Ago
Replies: 2
Views: 376
Posted By almostbob
a.rollover > img:hover { height:240px; width:240px; margin-left:100px; }
Forum: HTML and CSS 12 Days Ago
Replies: 1
Views: 317
Posted By almostbob
post those lines of code, and those immediately before and after,
the validator often finds an error on line 8 if there is something missing on line 7
or there is an ampersand or other entity that...
Forum: HTML and CSS 16 Days Ago
Replies: 6
Views: 503
Posted By almostbob
assumption:: to make a less than fullscreen image stretch to fullscreen, instead of tile, ( repeat-x repeat-y )
set the z-index lower than zero
the default z-index is zero,
the fullscreen image...
Forum: HTML and CSS 16 Days Ago
Replies: 6
Views: 496
Posted By almostbob
bummer,
that makes more sense than my thought

for an image it should be alt='this is a test' just to make the validators happy
Forum: HTML and CSS 16 Days Ago
Replies: 6
Views: 496
Posted By almostbob
try<span style="overflow:hidden; background:url('10000000.png'); text-align:center; width:80%; height:60px;">test</span>
Forum: HTML and CSS 18 Days Ago
Replies: 10
Views: 912
Posted By almostbob
zero that thought then, blackberry must be updated to 4.6 or higher
google button code<input name=btnG type=submit value="Google Search" class=lsb>
<input name=btnI type=submit value="I'm Feeling...
Forum: HTML and CSS 19 Days Ago
Replies: 10
Views: 912
Posted By almostbob
neither do I,
I was hoping for a quick fix, missing quote or something, but the code looks right, except for closing semicolons in the javascript (should be but doesnt generally matter)
so perhaps...
Forum: HTML and CSS 19 Days Ago
Replies: 10
Views: 912
Posted By almostbob
post your buitton code,
Forum: HTML and CSS 23 Days Ago
Replies: 3
Views: 469
Posted By almostbob
outsourcing the image is one way of increasing connection numbers
the http protocol limits the number of connections (2) to each domain,
exactly how i dont know, but it can be finessed

images...
Forum: HTML and CSS 23 Days Ago
Replies: 3
Views: 496
Posted By almostbob
10px is huge on a 17inch 640*480 display
10px is readable on a 17inch 800*600 display
10px is small on a 17inch 1024*768 display
10px is invisible on a 17inch 1280 * 1440 display
and occupies the...
Forum: HTML and CSS 30 Days Ago
Replies: 51
Views: 2,873
Posted By almostbob
"one warning" is always, for direct entered html, 'utf-8 assumed', just in case a non-translateable code is used
Forum: HTML and CSS 30 Days Ago
Replies: 4
Views: 434
Posted By almostbob
special purpose fields like the ICRA ratings system end up in meta tags
Forum: HTML and CSS 31 Days Ago
Replies: 51
Views: 2,873
Posted By almostbob
common sense,
what better way to DOS a site would there be than have it endlessly validating itself, so you exclude self references
same as most disable the current page from menus, coz its...
Forum: HTML and CSS 33 Days Ago
Replies: 5
Views: 489
Posted By almostbob
Well there wasnt any mention of Java before, that complicates things to me.
javascript some,
all I know about java is to point you at http://www.daniweb.com/forums/forum9.html
Forum: HTML and CSS 33 Days Ago
Replies: 5
Views: 489
Posted By almostbob
I use it to keep my logo in the bottom right corner of the page as
.logo { top: auto; left: auto; bottom: 2px; right: 1px; position: fixed;}

You may have to set either top or bottom to a...
Forum: HTML and CSS 33 Days Ago
Replies: 5
Views: 489
Posted By almostbob
ul#navigation { width: 12em; top: auto; left: 0; bottom: auto; right: auto; position: fixed;} /* should put the menu in the centre of the left edge of the page, you can set the position explicitly I...
Forum: HTML and CSS 34 Days Ago
Replies: 9
Views: 607
Posted By almostbob
sames as IE6/png, conditional css with eot fonts for IE
or wait till IE supports css3 properly (looks out window, watching for Hell to freeze over)<!--[if IE]>
@font-face { font-family:...
Forum: HTML and CSS 34 Days Ago
Replies: 9
Views: 607
Posted By almostbob
local is the local pc font store, I think, from the web server, even a web server installed locally it requires a url
something like@font-face {
font-family: GraublauWeb;
src: local("Lucida...
Forum: HTML and CSS Nov 11th, 2009
Replies: 26
Views: 2,612
Posted By almostbob
Yes
http://www.baraha.com/
Forum: HTML and CSS Nov 9th, 2009
Replies: 51
Views: 2,873
Posted By almostbob
I find quirks mode causes problems it renders very differently in different browsers, and goes invisible in some.
I know the code I write works in my browser, and thumbdrive versions of other...
Forum: HTML and CSS Nov 7th, 2009
Replies: 4
Views: 347
Posted By almostbob
dont use the code off that site its Crap
no dtd
parameters dont exist
tables are outdated
parameter values should be quoted
This site is a mashup of the worst that they could copy from somebody...
Forum: HTML and CSS Nov 6th, 2009
Replies: 1
Views: 281
Posted By almostbob
Dont use fixed sizes, the W3C recommended screen layout is % and ems. the site looks weird on 2400 widescreen. about 1/4 width
show the customized css code for comment,
there are some css mavens...
Forum: HTML and CSS Nov 6th, 2009
Replies: 51
Views: 2,873
Posted By almostbob
Q&D validation,
run the site through http://www.browsershots.org in browsers for each OS
IF w3c html validation errors are egregious it will show blankscreens in some (or many, sometimes ya really...
Forum: HTML and CSS Nov 3rd, 2009
Replies: 4
Solved: Submit button
Views: 433
Posted By almostbob
<button type='submit' name='thisorthat' value='whatever you want'>displayed label</button>
Forum: HTML and CSS Oct 28th, 2009
Replies: 3
Views: 445
Posted By almostbob
Dont do it, even if you find out how,
its a waste that users will not wait for
click away, next google search response
Forum: HTML and CSS Oct 23rd, 2009
Replies: 1
Views: 306
Posted By almostbob
<%@ Page Language = "VB" aspcompat=true Explicit="True"%>
<%Dim src As String = " bet "%>you knew to quote values up there , , , but, ,<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"...
Forum: HTML and CSS Oct 21st, 2009
Replies: 11
Views: 665
Posted By almostbob
the doctype declaration is the first line of the html file
it tells the browser what html is following
html 1
to html 4
or xhtml 1 strict or not(forgot the correct term there)
merely adding a...
Forum: HTML and CSS Oct 20th, 2009
Replies: 5
Views: 345
Posted By almostbob
so am I :)
guess the answer was not appropriate to the skillset :(
the other thread was pretty simple to follow, and gave code samples tho
Forum: HTML and CSS Oct 20th, 2009
Replies: 11
Views: 665
Posted By almostbob
external css files do not have <style></style>
they need only contain definitions, do not require comments whitespace or formatting .thumbnail{ position: relative; z-index: 0; }
.thumbnail:hover{...
Showing results 1 to 40 of 317

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC