Search Results

Showing results 1 to 40 of 77
Search took 0.01 seconds.
Search: Posts Made By: mj080
Forum: JavaScript / DHTML / AJAX Oct 15th, 2009
Replies: 1
Views: 514
Posted By mj080
i have been trying to google for a solution on my problem, but no luck yet. i have a ajax modal pop up that i'm using on my asp.net page, but it's not working in Firefox Mozilla or Google Chrome. All...
Forum: HTML and CSS Sep 28th, 2009
Replies: 8
Views: 467
Posted By mj080
i'm not sure why it's doing that, because my IE is reading it correctly (without adding any negative margin) but i have to add the negative margin in order for FF to read it correctly. I'll just have...
Forum: HTML and CSS Sep 23rd, 2009
Replies: 8
Views: 467
Posted By mj080
awe, still no luck. the only change that made was to make sure that IE reads that and doesn't change it when it reads the conditional comments page.

.:Why oh Why:.

thanks for your help, maybe i...
Forum: HTML and CSS Sep 22nd, 2009
Replies: 2
Views: 609
Posted By mj080
as far as i'm aware, you need to change it either manually, or with the code. the hotspot is (although part of the image) a seperate item on it's own with the code normally situated at the bottom of...
Forum: HTML and CSS Sep 22nd, 2009
Replies: 8
Views: 467
Posted By mj080
i have two seperate style sheets. one that needs to read FF and Chrome and a seperate style sheet for IE (conditional commenting) to fix all the bugs that IE has, but i now have a problem with Chrome...
Forum: HTML and CSS Jul 22nd, 2009
Replies: 7
Views: 374
Posted By mj080
well, if you do have a problem that you can't solve, it will let you know where an error (or a couple) is on the CSS. It's mainly for when you are done with your site and you want to make sure that...
Forum: HTML and CSS Jul 22nd, 2009
Replies: 7
Views: 374
Posted By mj080
or just use W3C CSS validator

http://jigsaw.w3.org/css-validator/
Forum: HTML and CSS Jul 17th, 2009
Replies: 5
Views: 484
Posted By mj080
do you not have a style to your coding, meaning, did you use CSS anywhere?
Forum: HTML and CSS Jul 16th, 2009
Replies: 5
Views: 484
Posted By mj080
what exactly is showing up on the left? i checked it in IE and it works fine, so i think you would just need to center align for FF etc.


text-align: center; // for IE
text-align:...
Forum: HTML and CSS Jul 13th, 2009
Replies: 4
Views: 547
Posted By mj080
what does your html look like? you also set the border style to your body (which is the outside border you are seeing). you need to style your body as basic and add styles to your tables and divs...
Forum: Site Layout and Usability Jul 10th, 2009
Replies: 8
Views: 914
Posted By mj080
you will need to download Safari and install it on your pc. i'm not 100% sure one how it works, but apparently it runs the same. Otherwise your other option will be to phone a friend with a Mac.
...
Forum: HTML and CSS Jul 9th, 2009
Replies: 3
Views: 670
Posted By mj080
The other thing is that you would need to use some more styling for FF and Chrome etc.

Maybe try and include


.sample {
text-align: -moz-center; //alignment for FireFox
text-align:...
Forum: HTML and CSS Jul 9th, 2009
Replies: 2
Views: 333
Posted By mj080
you use Java script to style your tool tips. there is some great open source projects available.
Forum: Site Layout and Usability Jul 9th, 2009
Replies: 3
Views: 666
Posted By mj080
i would suggest that you rather use a floated div for that image that you align with css. it won't work correctly if you use a background image if the cell that the picture should be behind is not...
Forum: Site Layout and Usability Jul 9th, 2009
Replies: 8
Views: 914
Posted By mj080
Two style sheets required with one framework. The reason that we include two style sheets is one for Fire Fox, Chrome etc. and one for IE.

IE is the only browser that supports conditional...
Forum: Site Layout and Usability Jul 3rd, 2009
Replies: 8
Views: 914
Posted By mj080
i would suggest div's. Tables limit you.

you would have to create two style sheets. one that is set for FF, Chrome etc and then one for IE. you then include conditional commenting on your html...
Forum: HTML and CSS Jul 3rd, 2009
Replies: 3
Views: 462
Posted By mj080
what software are you using?

in dreamweaver, when you are in source view, just select the "highlight invalid code" button and it'll highlight it for you
Forum: HTML and CSS Jun 25th, 2009
Replies: 6
Views: 488
Posted By mj080
you will need to have a conditional comment for IE. for example it should read


body {
text-align: -moz-center;
text-align: -khtml-center;
}

<!--[if IE]>
body {
Forum: Site Layout and Usability Jun 24th, 2009
Replies: 4
Views: 710
Posted By mj080
make sure that you use em or px for the width, and not %, unless your div is in a container?
Forum: HTML and CSS Jun 19th, 2009
Replies: 1
Views: 900
Posted By mj080
you'll have to create three 'slices' of an image. a top, middel and bottom, where the top and bottom is a set size and the middel is repeated-y.
Forum: JavaScript / DHTML / AJAX Jun 19th, 2009
Replies: 5
Views: 695
Posted By mj080
hehe :)

i'm not exactly sure where it came from, but that is the current js menu they use, and i need to style it...
Forum: JavaScript / DHTML / AJAX Jun 17th, 2009
Replies: 5
Views: 695
Posted By mj080
wow, i feel like an idiot. it's in a .js file??

so i would assume that it's .JavaScript
Forum: JavaScript / DHTML / AJAX Jun 12th, 2009
Replies: 5
Views: 695
Posted By mj080
i'm not sure if this is the correct place to post this, but i have a li menu with a sub menu that uses javascript. my normal code for a menu would be for instance:


function mmLoadMenus() {
if...
Forum: HTML and CSS Jun 10th, 2009
Replies: 3
Views: 2,503
Posted By mj080
i'm not completely sure what you are saying, but you can add the following script to your css


.transparentdiv {
filter:alpha(opacity=95);
-moz-opacity:0.95;
...
Forum: HTML and CSS Jun 10th, 2009
Replies: 0
Views: 260
Posted By mj080
i'm not sure if this is the right place to post this, but i'm having an issue with a title on a mapped area on an image.

i'm using the boxover from Swazz

http://boxover.swazz.org/

It works...
Forum: HTML and CSS Jun 9th, 2009
Replies: 8
Views: 518
Posted By mj080
hi Sussy123, hope you figure it out. by the styles i mean for example:


.imagediv { //This will read FF, Chrome etc.
text-align:center;
}

<!--[if IE]> //...
Forum: HTML and CSS Jun 8th, 2009
Replies: 8
Views: 518
Posted By mj080
i would suggest that you have it work right in FF and then include extra for IE since IE reads Conditional Comments. you include it like:

<!--[if IE]>
.your class {
your style;...
Forum: Graphics and Multimedia Jun 8th, 2009
Replies: 6
Views: 642
Posted By mj080
i would suggest that you rather try all with css. there is some great tutorials out there with css galaries
Forum: JavaScript / DHTML / AJAX Jun 5th, 2009
Replies: 2
Views: 315
Posted By mj080
just have a "/" infront of my source folder, and link to all other folders and subfolders and pages...yeah!!
Forum: JavaScript / DHTML / AJAX Jun 3rd, 2009
Replies: 2
Views: 315
Posted By mj080
I have a Java file with sub menu’s that links (via include) to my Master Page. everything works fine, except that the menu is not linking correctly. I have used relative links, but obviously the...
Forum: HTML and CSS Jun 3rd, 2009
Replies: 10
Views: 704
Posted By mj080
this works for me in IE, Chrome and FF


Your HTML would be


<div class="topdiv"></div>
<div class="containdiv"></div>
<div class="botdiv"></div>
Forum: HTML and CSS Jun 3rd, 2009
Replies: 10
Views: 704
Posted By mj080
i'm not going to even try this, i have the same problem in one of my pages, but what i did, was just lock it to my screen. so it's always on top of all content, but at the bottom of the screen. i can...
Forum: HTML and CSS Jun 3rd, 2009
Replies: 10
Views: 704
Posted By mj080
i would suggest that you add another style, comment it out and state that only if it's IE should it read the comment, and in that comment have your footer display correctly in IE.
Forum: Graphics and Multimedia Jun 3rd, 2009
Replies: 2
Views: 537
Posted By mj080
it depends on how big you want your file size to be, but firstly you can save it perhaps in better quality, like a normal gif/jpg and then import. when you do import, also make sure that your...
Forum: ASP.NET May 29th, 2009
Replies: 0
Views: 383
Posted By mj080
Hi, i need to find tutorials or open source projects to build stuff (think it will only be security, which i think that www.asp.net might be able to assist me in a tutorial, but i also need something...
Forum: Site Layout and Usability May 28th, 2009
Replies: 2
Views: 615
Posted By mj080
you might want to try this in your html


<embed src="yourmusicfile.mid" autostart="true" loop="true"
width="2" height="0">
</embed>
<noembed>
<bgsound src="yourmusicfile.mid" loop="infinite">...
Forum: HTML and CSS May 28th, 2009
Replies: 5
Views: 1,607
Posted By mj080
i think it would be easiest to create a li menu with css styling. for example your html code will be something like:


<ul id="nav">
<li><a href="home.html">Home</a>
<ul>
...
Forum: ASP.NET May 26th, 2009
Replies: 6
Views: 727
Posted By mj080
thanks so much for everyones help. i'll first try some of the options, before marking solved! i might still need help on this!

I think the phpBB would be the easiest way out, but i'm not looking...
Forum: HTML and CSS May 18th, 2009
Replies: 5
Views: 1,478
Posted By mj080
also make sure that the div or table you have as your header, has no margin-top pushing it down.
Forum: HTML and CSS May 18th, 2009
Replies: 5
Views: 1,613
Posted By mj080
also just make sure that you did set your text box as 'multiple'.
Showing results 1 to 40 of 77

 


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

©2003 - 2009 DaniWeb® LLC