221 Topics

Member Avatar for
Member Avatar for kukula

Hi, At the site of Marc O'Polo ([url]http://www.marc-o-polo.com[/url]) you can find the header of footer sticked to the top and bottom of website. How to do it? Just use z-index attribute?

Member Avatar for kukula
0
133
Member Avatar for dark_storm83

I am having an issue that I cannot resolve. I have a small flash file on my website that is simply a circle that rolls up slightly on mouse over. I have a div element with text that appears over (or technically under) the flash element to display a text …

Member Avatar for dantinkakkar
0
202
Member Avatar for basamdamdu

Hi all, I am a newbie when it comes to js/jquery. I am trying to have the content of a div (let's call it "quote") added to the body of a mailto. the content of the div "quote" is randomly generated (stored in .js file) by pressing a "next" button. …

Member Avatar for basamdamdu
0
4K
Member Avatar for SolidSolutions

How can I get an image to have it's own hyperlink that is inside of a clickable div? [CODE]<div id="clickable" onclick="window.open('http://www.daniweb.com');return false;"> <p>I love clickable images!</p> <a href="http://www.google.com"><img src="someimage.png" /></a> <p>too bad they don't click in a clickable div</p> </div>[/CODE] If I try the above then the DIV is always …

Member Avatar for SolidSolutions
0
357
Member Avatar for jonow

I have a simple JavaScript question. I want a drop down selection so that when you select a certain option is shows the value of the option in a div. So for example: [CODE]<select> <option value="select-1">One</option> <option value="select-2">Two</option> <option value="select-3">Three</option> </select>[/CODE] So lets say that option one is selected, then …

Member Avatar for stultuske
0
221
Member Avatar for Karrashin

Hello everybody, I'm trying to make a simple page, build from several div's. I have a Header-div (yellow), a Navigation-div (green), a Content-div (pink), a Socialmedia-div (grey) and a Footer-div (red). All div's have a fixed height except for the content-div, I'd like this div to auto size itself. This …

Member Avatar for asprin
0
228
Member Avatar for stroper

We have to make a little webshop in HTML, Css and javascript. Everything but the div's are to be made in JS, also the table's we can't make them in HTML. In the left (Links div) we make a couple of links, in the middle div (dynamicLeft) we have to …

Member Avatar for Easyrider439
0
151
Member Avatar for mehgcap

Hi all, I am relatively new to css. I have volunteered to help a small organization with their website, and I found what they currently had to be very out of date and not at all modular (for instance, their main nav menu was replicated in every site page, instead …

Member Avatar for simplypixie
0
186
Member Avatar for Virangya

hi, how to display a div on top off all the other content? i tried [ICODE]style=" position:relative; left:0px; top:0px; z-index:100;"[/ICODE] which didn't work, then when i used position:absolute; it worked but, it displays in a totaly in appropriate position because of position:absolute . how can i make this happen? when …

Member Avatar for Virangya
0
1K
Member Avatar for Virangya

hi, i need to empty all the divs whic has an id like 'bkoption' eg : my html code is like this [CODE] <div class="subsubsubmenu" id="bkoption1">some content</div> <div class="subsubsubmenu" id="bkoption2">some content</div> <div class="subsubsubmenu" id="bkoption3">some content</div> [/CODE] so when i trigger an on click function i need to empty all of …

Member Avatar for Virangya
0
561
Member Avatar for toddj

I have been working on writing a newsletter template to send out to a mailing list. I found a site that let me download one, but after determining it was overly complex, I decided to rewrite it using css. (it was using tables for content layout) Everything was working fine …

Member Avatar for toddj
0
160
Member Avatar for asuprem

The CSS Menu I have moves the contents of the div tag below it sideways. I am posting only the CSS styles for it because the code inside the <body> tag utilizes only the styles. The menu div tag is the id #navMenu. The content is in three div tags …

Member Avatar for suhaildawood
0
210
Member Avatar for tusharbhatia

Hi, Here is a link to my side by side div's: [url]http://jsfiddle.net/cMpaE/[/url] Or you can view my code below (it's the same for both, but if you go to the above link you can see a preview) [CODE] <div id="logoBlock" style="float:left; background-color:#CF6; width:15%; min-height:120px; border-top-left-radius:5px; border-bottom-left-radius:5px; margin-bottom:2%;"> <center> logoBlock </center> …

Member Avatar for suhaildawood
0
242
Member Avatar for AMADH

Hello I was wondering if anyone might be able to help me? this is the jquery?I have two problems that I am hoping somone can help me with? What I am trying to do is when I click on a checkbox (#Facebook) it will display a div #widget-FB, and when …

Member Avatar for Airshow
0
269
Member Avatar for lukemaister

Hi All, I have lately encountered quite a few problems with the problem I'm about to describe. I think it would be good for all of us to know the solutions if anytime we encounter this problem. I know my content is larger than the screen and I have a …

Member Avatar for Dandello
0
112
Member Avatar for mundvawala

Hi, I want to append the content of an already defined "old div" tag to the "new div" tag dynamically but as I'm new to javascript i don't have any idea that how to do this. The code i tried is attached below. And one more question, how to remove …

Member Avatar for niranga
0
221
Member Avatar for judge6

Hi all, I'm working on a website which has a horizontal navigation menu, much like the one on DaniWeb. Basically I need to include an icon which floats right for each list item. IE7 has a bug whereby if the container div does not have a width stipulated then a …

Member Avatar for Dandello
0
151
Member Avatar for twistercool

I been wondering what is the CSS rule used in Joomla main content, wherein it prevents content from overflowing without showing sliders, it stretch out to the length of content no matter how lengthy it is... Thanks

0
110
Member Avatar for shadowcrawler

Hi there, is there any way to adjust the width of outer div automatically? e.g.[CODE]<div class="outer"><div class="inner">test</div></div>[/CODE] What I want is that the width of outer could be set automatically according to the content of inner so that I do not have to set the value by myself.

Member Avatar for Dandello
0
2K
Member Avatar for Birdmanskii

The #review section won't float left in Dreamweaver. For some reason when I use the float: left; command, the #review div stays underneath the #band_links div. I want #review to line up on the right side of the #share, #tracklist, and #band_links divs. I've tried everything I can think of …

Member Avatar for shibin vadayatt
0
1K
Member Avatar for ctkam

Hi anyone know how to make round corner in IE? This code only works in Mozilla .login { background:#0C3; box-sizing: border-box; width: 40em; height: 20em; border-radius: 0.5em 2em 0.5em 2em; -webkit-border-radius: 0.5em 2em 0.5em 2em; } Thankx in advance

Member Avatar for Biiim
0
92
Member Avatar for Virangya

Hi, i have a marquee on my page which looks like the following ------------------------------------------------------------------------------ |Picture(div)-|-Marquee(div)--------------------------------------------| |---------------|--------------------------------------------------------------| |---------------|--------------------------------------------------------------| ------------------------------------------------------------------------------ so my marquee stops at the picture and starts again from the beginning . here picture is a square area but i want to use some curved image to that place and …

Member Avatar for Virangya
0
165
Member Avatar for Dannis86

Hello there, I am redesigning my website. This is the design: [URL="http://imageshack.us/photo/my-images/217/nieuwdesign.png/"]http://imageshack.us/photo/my-images/217/nieuwdesign.png/[/URL] How far I am right now, is not far enough in my eyes. The code that I am having right now is for the HTML: [CODE]<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" …

Member Avatar for ko ko
0
211
Member Avatar for Virangya

Hi, i'm really new to jquery and i don't know how to solve this. i added following code to blink a div. initially mypopup div is hidden. and 10 seconds after page was loaded this div appears. because of this toggle() method div displays for 10 more seconds before hiding …

Member Avatar for ddymacek
0
257
Member Avatar for Thisisnotanid

Hi all, I'm new to web development and am experimenting with different things; one of which would be creating a visually appealing "drop-down" menu. I had a simple CSS selector setup before but I opted for a JavaScript solution instead, making the change for the greater flexibility which the approach …

Member Avatar for Thisisnotanid
0
240
Member Avatar for johnnycho

I know from scouring the Web that this is a very common Javascript question, but I have a twist on the question which is giving me headaches, and I hope some of the brilliant minds here at DaniWeb can help show me the error of my ways. Say a user …

Member Avatar for vibhaJ
0
2K
Member Avatar for jackparsana

Hi guys, I need one hide and show div with fade effect. please help me to find. i have one button when user mouse click that button , it show one div block with fade effect. and i want to stay on the open div. in div tag i have …

Member Avatar for jackparsana
0
199
Member Avatar for gambit_1607

hi i'm using ie6 and this is my site's code [CODE] <div id="content-area"> <div class="panel-display panel-1col clear-block" id="welcome"> <div class="panel-panel panel-col"> <div><div class="panel-pane pane-custom pane-1" > <div class="pane-content"> <div class="welcome_message"><br /> <h3><img src="sites/all/themes/yghhzen/css/images/helpingpeoplehelpthemselves.png" alt="Helping people help themselves."/></h3><br /> <ul><div class="spacer"></div> <li><a href="/dailynews/all"><strong>Learn</strong> more</a>. <a href="/supports/"><strong>Get</strong> support</a>.</li> <li><a href="/support_group/add"><strong>Create</strong> a group</a>. …

Member Avatar for Arkinder
0
172
Member Avatar for alihuta2002

I know this may be a question that we see often, but I couldn't see any similar to my case or maybe just I don't understand the right concept of AJAX. I'm kinda new to AJAX and trying to accomplish with one of my new project. I've been told that …

Member Avatar for rv1990
0
155
Member Avatar for Thisisnotanid

Hi all, I've just started learning CSS and HTML to develop websites as a hobby. I was experimenting with what I'm learning and have hit a block (excuse the pun). I'm trying to create a drop-down menu using CSS and HTML alone. In the following I try to assign what …

Member Avatar for Thisisnotanid
0
254

The End.