Design of the site is based off the logo or will be anyway.
Type: Posts; User: Kage Kazumi; Keyword(s):
Design of the site is based off the logo or will be anyway.
Well I just tried it in Mac Dreamweaver and preview in browser and it works fine. Windows 7 not so much.
Yes it is. However, Google Chrome, Fire Fox, and Safari ignore the css when I type it that way (yes lastest version of browsers installed).
I was never good in the design area of websites or logos, but created this simple logo (8 variations of it) and would like to know which (if any) you like the best (each one is numbered).
...
div#somediv h1{
background-color:#000;
}
Now the above is just an example, but I saw someone typing CSS that way (and have seen it many times), but I can never get it to work. I always...
Yes, I just noticed that when I went to view source and hovered over the CSS file. Damn Dreamweaver not putting the full path.
I hate it when it is something easy that I over look... O_0
Here I just uploaded them:
ADMIN index: http://zanime.net/cms/admin/index.php
Header.php: http://zanime.net/cms/admin/include/header.php
it doesn't even work on a live site.
Dreamweaver adds those ".." automatically and it doesn't work with them removed. Also this is local host (Wamp).
I was creating my admin panel (admin homepage) and then took out the following code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"...
So a username field should be varchar? Also it was how I saw someone set up the database in their video.
Yes I know this. The issue is if I do not choose anything phpmyadmin is auto doing it...
I created a table in phpmyadmin called "members" and it has a row called "name" which I have it set as such:
Name = name | Type = INT | Length/Values = 100 |
Now when I type in "admin" in the...
That creates a new error:
Parse error: syntax error, unexpected '}', expecting ',' or ';'
Here is what I have written incase I did it wrong:
<?php if(isset ($error)) { echo '<div...
I thanks for the help. However, I went ahead and started working on it adding more information. So the 'echo' is not there. I will post again if I receive any new errors regarding the echo later in...
This error pops for the following line:
<?php if(isset ($error)) (echo '<div id="login-errors">'.$error.'</div>'); ?>
EDIT
If I change "echo" to "print" it returnes no errors, but then...
I just get a couple of errors that say:
Undefined variable: username
Undefined variable: password
If it is above both if statements.
However, above the second if statement it does...
Being a beginner you have only confused me more. What do you mean by "echo out the values?"
I'm creating the login page for my admin area to my CMS I am working on. I am using the "if" statement to echo instructions if the form input fields are blank. However, the echo will not work inside...
Dreamweaver is popping a syntax error for line 8 (below), but I'm just starting out and can't figure out what is the issue. The Code:
<?php
include ('includes/connect.php');
function...
I found the issue. keyboard1333 was correct, but he had a typo in his code:
$(".tb-container').show();
Should be:
Your mock up works to some degree, but not 100%.
Example: I can choose LINUX and it only displays 1 container with Linux when their are more. The same with the FREE filter. IS their a way we can...
Yes, however, your code is completely different then what I am using. In fact I looked at it and I was like: O_o
*I hate being a beginner...
As most who know who have been helping me. I have a list that need to be embedded in forum post. Now I know how to do this, but the page (logo section) is off alignment. How can I fix this so it...
keyboard1333 suggested this in this topic. However, it is giving me an error.
I believe he was telling me to set the choices up so when I picked one like WINDOWS and then select MAC it will reset...
Thank you. Found the extra DIV and a few other errors. Bookmarked.
When I add that code it breaks the jQuery. Here is where I am putting it (in case I'm putting it in the wrong location):
var selection = $(this).val(); // get it's value...