Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 25 of 50
Search took 0.17 seconds.
Search: Posts Made By: Brandnew
Forum: HTML & CSS 05-15-2013, 07:52 PM
Replies: 4
Views: 177
Posted By Brandnew
Hi castler, i'm not quite sure what you're...

Hi castler,

i'm not quite sure what you're aiming for but you can adjust the location of the hovered images here in your CSS

.thumbnail:hover span{ /*CSS for enlarged image on hover*/...
Forum: JavaScript programming 05-15-2013, 05:49 PM
Replies: 2
Views: 159
Posted By Brandnew
There is another site similar to CodyAcademy...

There is another site similar to CodyAcademy called learnstreet.com (http://www.learnstreet.com), i really don't know how good they are in comparison

For javascript specific there is (but this is...
Forum: HTML & CSS 05-13-2013, 04:26 AM
Replies: 1
Views: 117
Posted By Brandnew
i don't quite understand by what is meant when...

i don't quite understand by what is meant when you indicate data is not all even, do you mean in the sense that each tabular data box size aren't the same size? Plus it sounds like you have these as...
Forum: HTML & CSS 05-13-2013, 03:19 AM
Replies: 2
Views: 207
Posted By Brandnew
i thought this nice tutorial from Ralph Phillips...

i thought this nice tutorial from Ralph Phillips http://www.ralphphillips.com/tutorials/ may be what you're looking for plus i fiddled with your html:

<!DOCTYPE html>
<html>
<head>
<style...
Forum: HTML & CSS 05-12-2013, 07:26 AM
Replies: 4
Views: 142
Posted By Brandnew
Here is an example of how to center items with...

Here is an example of how to center items with CSS:

<!DOCTYPE html>
<html>
<head>
<style type="text/css">
#center{margin:0 auto;width:220px;}
</style>

</head>
Forum: JavaScript programming 05-12-2013, 06:21 AM
Replies: 2
Views: 140
Posted By Brandnew
hi ryanjohnsond, i made a small change to...

hi ryanjohnsond,

i made a small change to your monthlyPlan function and i think it updated the way you want your function:

function monthlyPlan(){
for(var i=0;...
Forum: HTML & CSS 05-11-2013, 02:50 AM
Replies: 4
Views: 142
Posted By Brandnew
are you sure it is not working? on my mobile...

are you sure it is not working? on my mobile device i see the word svendeproven where the o is the format u wanted, as well as pa where the a has the circle above

on a side note you can upload the...
Forum: JavaScript programming 05-10-2013, 09:10 PM
Replies: 12
Views: 220
Posted By Brandnew
Yes there are global variables <!DOCTYPE...

Yes there are global variables

<!DOCTYPE html>
<html>


<body>
<p id="demo"></p>

<script>
Forum: HTML & CSS 05-10-2013, 08:29 PM
Replies: 2
Views: 103
Posted By Brandnew
hi, right off the bat i see in your...

hi,

right off the bat i see in your style.css with the nav you have it labeled as
.#nav {
margin: 0;
outline: 0;
}

i believe you can only have either . for class or # for id (when...
Forum: HTML & CSS 05-10-2013, 05:59 PM
Replies: 7
Views: 203
Posted By Brandnew
How about this: <!DOCTYPE html> <html> ...

How about this:

<!DOCTYPE html>
<html>
<head>
<style>
th{text-align:left}
td{padding:5px;}
</style>
Forum: HTML & CSS 05-07-2013, 05:38 PM
Replies: 4
Views: 233
Posted By Brandnew
Which browser are you running this in? i checked...

Which browser are you running this in? i checked in firefox/chrome/ie8 and the links are all inline...
Forum: HTML & CSS 05-07-2013, 06:28 AM
Replies: 4
Views: 233
Posted By Brandnew
i removed a few of your css items and added you...

i removed a few of your css items and added you .nav class as you have that listed on your <ul class="nav">.

See if the following works for you, hope this helps:

<!DOCTYPE html>
<html>
<head>...
Forum: JavaScript programming 05-07-2013, 06:18 AM
Replies: 4
Views: 179
Posted By Brandnew
Seems like what xelawho said, sounds like a...

Seems like what xelawho said, sounds like a 2-dimensional array:
<!DOCTYPE html>
<html>
<head>
<script>
var arr = [1,2,3];
var arr2 = ['a','b','c'];

var sample = new Array(arr,arr2);...
Forum: JavaScript programming 05-07-2013, 02:03 AM
Replies: 4
Views: 333
Posted By Brandnew
Hey Joshua, i tried fiddling around the...

Hey Joshua,

i tried fiddling around the WePay button with some css and i think there are potentially two sources of problems, 1) being the browser (internet explorer) since firefox and chrome...
Forum: HTML & CSS 05-06-2013, 06:07 AM
Replies: 2
Views: 165
Posted By Brandnew
Hi, you can add this to your style sheet...

Hi,

you can add this to your style sheet (create a class to create specifics):


#menu li:hover > a.blue {background: blue;}
#menu li:hover > a.lavender {background: lavender;}


<!doctype...
Forum: JavaScript programming 05-05-2013, 08:26 AM
Replies: 1
Views: 163
Posted By Brandnew
i think the main reason it's not working, because...

i think the main reason it's not working, because your function isn't calling anything to really determine what to display.

Show_Info() on your onclick calls the function but nothing is being...
Forum: General web building 05-04-2013, 01:59 AM
Replies: 1
Views: 641
Posted By Brandnew
just a thought, how about using php and mySQL and...

just a thought, how about using php and mySQL and display the data by drawing the information into tables or so and utilize javascript
Forum: HTML & CSS 05-03-2013, 08:09 AM
Replies: 7
Views: 203
Posted By Brandnew
Maybe something like this: <!DOCTYPE html> ...

Maybe something like this:

<!DOCTYPE html>
<html>
<style type="text/css">
.table{width:300px;height:100px;border-collapse:collapse;}
.table1{width:300px;height:100px;border-collapse:collapse;}...
Forum: JavaScript programming 05-03-2013, 07:39 AM
Replies: 4
Views: 333
Posted By Brandnew
i fiddled with your request and actually i never...

i fiddled with your request and actually i never heard of we pay but i did use css and table to get to two to be inline, the "!important" after the CSS code doesn't seem to be needed for the margin...
Forum: HTML & CSS 04-30-2013, 10:07 PM
Replies: 3
Views: 145
Posted By Brandnew
Could you do something like this with CSS &...

Could you do something like this with CSS & adjust accordingly?


<!DOCTYPE html>
<html>
<head>
<style type="text/css">
img{
margin:-10px auto;
Forum: HTML & CSS 02-21-2013, 06:51 AM
Replies: 7
Views: 426
Posted By Brandnew
<!DOCTYPE html> <head> <style...

<!DOCTYPE html>
<head>
<style type="text/css">
td{text-align:center}
</style>
</head>

<body>

<table border="1" width="400px">
Forum: HTML & CSS 02-21-2013, 06:35 AM
Replies: 6
Views: 383
Posted By Brandnew
i'm may not be answering this correctly, but i...

i'm may not be answering this correctly, but i don't think you can 'hide' the link if you're referring to the src found in the iframe element:
<iframe src="ebindx.html" frameborder="0" width="100%"...
Forum: HTML & CSS 11-22-2012, 06:27 AM
Replies: 3
Views: 209
Posted By Brandnew
The welcome image falls under .welcome class...i...

The welcome image falls under .welcome class...i added to your css:

.welcome{
position: absolute;
}

moved the image to under the images that are switching. Not sure if this works for you but...
Forum: HTML & CSS 11-20-2012, 10:16 PM
Replies: 2
Views: 259
Posted By Brandnew
Not sure if this will help, but when i removed...

Not sure if this will help, but when i removed this

<!-- News headers -->

i think for css comments are:
/*-- News headers -- */

the css poppedup
Forum: Java and JSP 11-16-2012, 07:16 AM
Replies: 2
Views: 711
Posted By Brandnew
Hi ezra, i'm somewhat learning java as well...

Hi ezra,

i'm somewhat learning java as well (haven't really fiddled with it for some time til now). i was able to get the printout for your coding (System.out.println) but the issue that pops up...
Showing results 1 to 25 of 50

 
Forum Jump

All times are GMT +1. The time now is 11:29 PM.