213 Posted Topics

Member Avatar for vishalkhialani

If you only want the opacity to affect the background, place the text in a separate element and position it over the background. Absolute positioning, floats, z-index, etc. Regards, Arkinder

Member Avatar for Arkinder
0
126
Member Avatar for Shankye

By textbox do you mean textarea? Are there scrollbars? Are you wanting it to start at the bottom or scroll down on its own? Please be more specific when asking questions. Regards, Arkinder

Member Avatar for Arkinder
-1
68
Member Avatar for ivanichi
Member Avatar for BelgianQueen

You can't with CSS alone. Look into JavaScript or jQuery (a JavaScript library). Regards, Arkinder

Member Avatar for Arkinder
0
111
Member Avatar for tcollins412

I'm going to quote a mentor of mine for this, "IE9, when it's released next year, will be 2-3 years behind ALL other browsers TODAY and then it won't be updated for at least 3 years after that while all other browsers will have incremental updates several times each year. …

Member Avatar for shaya4207
1
175
Member Avatar for chaitanya91845

Let me make sure that I'm understanding what you're wanting. You have a flash object of some form that needs individual file paths from your blog to run, but you don't want to have to change the file paths every time you add new images or whatever? Regards, Arkinder

Member Avatar for chaitanya91845
0
255
Member Avatar for shafeequeom

This forum is using [URL="http://www.vbulletin.com/"]Vbulletin[/URL], and the logout screen is simply being styled. Creating this screen requires very basic PHP. As for "the box". It's even more basic HTML and CSS. Regards, Arkinder

Member Avatar for Kraai
0
167
Member Avatar for anithajerome

Have a look at [URL="http://www.daniweb.com/forums/post1405426.html#post1405426"]this[/URL] post. Regards, Arkinder

Member Avatar for ITchimes
0
99
Member Avatar for Altairzq
Member Avatar for Altairzq
0
161
Member Avatar for rakibtg

I believe that she meant [CODE=HTML]<input type="submit" value="Search" style="background-image: url('URL of image');">[/CODE] Regards, Arkinder

Member Avatar for rakibtg
0
71
Member Avatar for lisan28

You're left and right frames both have the z-index property. The content division does not, which would place it beneath those frames. By the way, the problem doesn't occur on Mac's Firefox. To fix Chrome simply give your content division a height (around 62% should do it). It should fix …

Member Avatar for Arkinder
0
1K
Member Avatar for maketick123

The best way to learn something is to do it. Nothing beats experience. First you have to know enough to be able to do it. Read books, look at online resources, read through threads in forums, and most importantly - try to code things on your own. Regardless of how …

Member Avatar for Arkinder
0
154
Member Avatar for MJ Pieterse
Member Avatar for disposable_zero

There are two options. You can center the entire form or just the elements inside of it. [B][U]Option 1~[/U][/B] [CODE=HTML]<div id="wrapper"> <h2 class="extra">Submit <span>Application</span></h2> <form action="upload.php" method="post" enctype="multipart/form-data"> <input type="file" name="ufile" /> <input type="submit" value="Upload" /> </form> </div>[/CODE] [CODE=CSS]#wrapper { text-align: center; }[/CODE] This will center all of the elements …

Member Avatar for Arkinder
0
101
Member Avatar for Borzoi

I agree, and [ICODE]http://site.com/videos[/ICODE] is far more user friendly. Why not store the photos for each system in an array, and use a function to check which page the user is on, then display the picture accordingly? Regards, Arkinder

Member Avatar for aniyishay
0
172
Member Avatar for jmcdyer

This has NOTHING to do with the HTML and CSS forum. We have no control over Yahoo's servers. This is an Internet, browser, or OS related problem. Reset your browsers. Check your Internet connection Regards, Arkinder

Member Avatar for dartz
0
647
Member Avatar for sirlink99

[URL="http://sixrevisions.com/tools/12-excellent-free-text-editors-for-coders/"]Here[/URL] are a few. I've used most of them at one point or another, and they work well enough. Regards, Arkinder

Member Avatar for bben95
0
207
Member Avatar for feoperro

No, the iframe is displaying another web page. Unless you have access to that page, in which case you would have to make the page fit within the iframe - the iframe has a width and height of 500px, then the actual page itself has to be within 500px. Regards, …

Member Avatar for bben95
0
186
Member Avatar for chamnab

I have no idea what you're talking about. There is no HTML element that can import anything. Are you wanting a background image, color, etc? You simply aren't providing enough information. Regards, Arkinder

Member Avatar for virtuemart
0
101
Member Avatar for atticusr5

Hi atticusr5, No, this is not possible by default and I don't know of any software that can. However, you can always create non-administrator accounts for the other members and turn on parental controls. From there you can set logs to record what they're doing/have done, restrict what they have …

Member Avatar for Arkinder
0
552
Member Avatar for mestalia118
Re: help

Are you using an image and only want those sections to repeat, or have you tried coding this? Please provide any code you have tried or a link to a test page in addition to Borzoi's request. Regards, Arkinder

Member Avatar for Arkinder
0
78
Member Avatar for kischi

This cannot be done with HTML or CSS alone. You will need a scripting language. Regards, Arkinder

Member Avatar for Loved
0
104
Member Avatar for feoperro

Twitter is using a simple text input. The rounded borders are from the CSS3 [ICODE]border-radius[/ICODE] property. [CODE=HTML]<input value="" placeholder="Search" name="q" id="search-query" type="text">[/CODE] The magnifying glass is the background image of an element, and they are absolutely positioning it with a [ICODE]right: 0;[/ICODE] Regards, Arkinder

Member Avatar for NZprog
0
855
Member Avatar for mcld

Have a look at the [URL="http://www.w3schools.com/css/pr_background-attachment.asp"]background-attachment property[/URL]. Regards, Arkinder

Member Avatar for mcld
0
113
Member Avatar for daabomb2002

Why don't we all start bringing up three year old threads that have already been answered, and post inadequate replies that don't work.

Member Avatar for Arkinder
1
406
Member Avatar for sreein1986

It is called a universal rule in CSS. Let's say you have, [CODE=CSS]* { padding: 0; margin: 0; }[/CODE] Now every HTML element on the page will have a [ICODE]padding[/ICODE] and [ICODE]margin[/ICODE] of 0, and is often used to reset the default [ICODE]padding[/ICODE] and [ICODE]margin[/ICODE] created by the browser. This …

Member Avatar for Arkinder
0
111
Member Avatar for nikita.chandra

You should never use tables for layout, this is not the year 1996. All of your markup is deprecated. Have a look at [URL="http://www.w3schools.com/css/css_intro.asp"]CSS[/URL]. Regards, Arkinder

Member Avatar for Arkinder
0
143
Member Avatar for sirlink99

“If it works in IE but not Firefox then your markup is wrong. Never, ever use IE as a reference for how things should work. Inept at best, it is 12 years behind all others in modern standards and practices. Never, ever trust IE to do anything right.” - Doc …

Member Avatar for Arkinder
0
208
Member Avatar for nedsnurb

Have a look at [URL="http://css-tricks.com/the-perfect-fluid-width-layout/"]this[/URL], and [URL="http://www.maxdesign.com.au/articles/liquid/"]this[/URL]. Regards, Arkinder

Member Avatar for Arkinder
0
86
Member Avatar for sirlink99
Member Avatar for Arkinder
0
102
Member Avatar for tarapvny

Where else is the content supposed to go? Make your content smaller to fit within whatever container you have. Regards, Arkinder

Member Avatar for Arkinder
0
165
Member Avatar for zeeshan_kust

They're most likely using the pseudo-class active, and changing it for each page. [CODE=CSS]a:active { /*code for loaded page*/ }[/CODE] This is changed for each link as a different page is loaded, causing the corresponding link to the page you're on to be active. I don't think that there is …

Member Avatar for Arkinder
0
88
Member Avatar for robdquick

You should never use tables for layout. It was a method thought up in 1996 when there were no better ways to accomplish design - as you can see it's not very effective. There is a better way now, CSS. Regards, Arkinder

Member Avatar for Arkinder
0
70
Member Avatar for daviddoria

Have a look a [URL="http://www.daniweb.com/forums/post1396686.html#post1396686"]this[/URL] to better understand how file paths work. Regards, Arkinder

Member Avatar for Arkinder
0
152
Member Avatar for 3825

For your numbered list to display correctly in Chrome, increase the height of your [ICODE]quickSummary[/ICODE] bar. This will keep the list pushed to the right. [ICODE]<a href="#"><h1>proofseeker</h1></a>[/ICODE] is not aloud, but [ICODE]<h1><a href="#">proofseeker</a></h1>[/ICODE] is. Your footer displays consistently in Firefox, Safari, Chrome, and Opera. Could you describe the problem, what …

Member Avatar for 3825
0
401
Member Avatar for OscarT

The entire purpose of using the percentage unit is for a dynamic value. The problem with percentage is the browser is normally left with the question "percentage of what?" All the browser knows is that you want [ICODE]div#sub_container[/ICODE]'s height to be 100%. It interprets it as 100% of [ICODE]div#main_container[/ICODE]'s (it's …

Member Avatar for OscarT
0
194
Member Avatar for pjh1985

Could you not give the column a set height? This will give any new links exceeding the height start in a new column. Regards, Arkinder

Member Avatar for Arkinder
0
65
Member Avatar for enam

The value [ICODE]blink[/ICODE] was used in CSS1 to replace the Netscape browser's [ICODE]blink[/ICODE] tag, which is deprecated. The value is not supported in IE, Chrome, Opera, or Safari. Regards, Arkinder

Member Avatar for enam
0
480
Member Avatar for daviddoria

[QUOTE=daviddoria;1403774]Hm, I added [code] <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"> [/code] To the top of the page and it looks nice in Chrome and IE, but in Firefox the sidebar is all "scrunched up" (for lack of a better term.. haha). Basically the line breaks between the links are missing, …

Member Avatar for Arkinder
0
159
Member Avatar for LogicWeb

The [ICODE]vertical-align[/ICODE]property is for images, not text. Regards, Arkinder

Member Avatar for Kraai
0
151
Member Avatar for nedsnurb

You're using both [ICODE]float: left;[/ICODE] and [ICODE]position: absolute;[/ICODE], only one is needed and putting only cancels one out. Also, when using [ICODE]float: left;[/ICODE] or [ICODE]position: absolute;[/ICODE] the element is removed from the normal flow of the page. Try using [ICODE]top[/ICODE] and [ICODE]left[/ICODE] to position the image where you would like …

Member Avatar for nedsnurb
0
110
Member Avatar for imKEN

All of this sounds great; but without any knowledge or experience with HTML or CSS you're simply wasting your time; and we can't do it for you. What did you use to make the design? Is it just an image of what you would like your web page to look …

Member Avatar for macgurl70
0
136
Member Avatar for reihaan

It's not an error, IE simply lacked the support for the format. For loading times sake, use the gif format. If the png format is absolutely necessary, use the JavaScript code posted by Kraai. Both are excellent solutions. Regards, Arkinder

Member Avatar for reihaan
0
98
Member Avatar for chamnab

It's impossible to say what book is "the best". A books effectiveness is different for every person; but nothing is more effective than experience. As macgurl70 said, a good place to start would be [URL="http://www.w3schools.com/html/html_intro.asp"]w3schools[/URL]. Regards, Arkinder

Member Avatar for Arkinder
0
60
Member Avatar for cguan_77

Another way, <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <style type="text/css"> * { margin: 0; padding: 0; } #objectBar ul { list-style-type: none; } #objectBar li { display: inline; padding: 5px; } </style> </head> <body> <div id="wrapper"> <div id="objectBar"> <ul> …

Member Avatar for Arkinder
0
208
Member Avatar for hindu times

I don't see what you're talking about in Opera, and I don't have IE. I'll look at this more later when I have access to a PC. Could you possibly post a screen shot of the problem? Regards, Arkinder

Member Avatar for Arkinder
0
224
Member Avatar for NewOrder

The target attribute is becoming/is deprecated, and frames are just a bad idea. [URL="http://www.yourhtmlsource.com/frames/goodorbad.html"]This[/URL] was written two years ago, but remains accurate today. The best way to accomplish this is through a scripting language such as JavaScript, or as VulcanDesign said, jQuery - a JavaScript library that takes away the …

Member Avatar for Arkinder
0
98
Member Avatar for ankit.pandey3

This cannot be done with HTML or CSS. However, it can be accomplished in several other languages. I suggest asking [URL="http://www.daniweb.com/forums/forum117.html"]here[/URL]. Thanks, Arkinder

Member Avatar for VulcanDesign
0
1K
Member Avatar for chinee

An example of an HTML/CSS image gallery can be found [URL="http://www.w3schools.com/CSS/css_image_gallery.asp"]here[/URL]. Regards, Arkinder

Member Avatar for RykeTech
0
121
Member Avatar for chinee

You are missing a right brace, }, at the end of your .content rule. Also, [ICODE]align: center;[/ICODE] does not exist in CSS - align is a deprecated HTML attribute. Regards, Arkinder

Member Avatar for chinee
0
378

The End.