hi folks, i have a couple problems that i'm trying to fix.
i'm working on a new layout and almost have it looking perfect across all browswers, however i have a few problems;
the logo in the top right corner doesn't sit flush with the top in FF
is there any way to get bulletpoints to change bgcolour in IE, i was told to try onmouseover="this.bg='#f00000'" but i've had no joy with that.
also i read once that i could transform text, depending on letter position, do you have any idea how i would go about making the first and last letter of a 'blockquote' twice the size?
erm, that's about it, i think. you can check it out here: http://creed-online.net/test/ it might require a hard refresh.
Man, the concept of mouseover drop down menus written in CSS is GREAT (b/c it, in theory, is cross-browser compatible). I have this one up and it works perfectly in IE (which is weird) but in FF, you mouse over and if you drag down one of the longer menus (try, like, "company" to see what I mean) right when it comes to the next div, it will make the menu disappear (I don't know if I explained it properly: you mouse over, the menu drops down, you try to move your mouse down to one of the lower links and suddenly the menu disappears for no reason). So, my questions: anyone know why it's doing this? aaaaand how to fix it? I already have the div I think it's conflicting with z-indexed to -1, btw. See mah poor menu here (Look in FF to see the issue, obviously lol)
[Error: Irreparable invalid markup ('') in entry. Owner must fix manually. Raw contents below.]
I'm working on a site design using a good deal of DHTML and have run into a snag. I'm trying to detect where the user's mouse is, but I can't for the life of me get the correct position. I'm using the mouse detection script from quirksmode, but instead of giving me a position anywhere near the mouse (which in the case of what I was attempting to detect would of been somewhere in the neighbourhood of 100,350), but instead thinking my mouse is down outside of the page view somewhere around 560X. (Just in case it makes a difference, I have part of the page pulled in with a php require() ).
tooltip.js
function inittooltip(target) { tltp = new getObj(target); tltp.obj.onmouseover = showtooltip; tltp.obj.onmouseout = stoptooltip; }
function showtooltip(e) { var isOpera = (navigator.userAgent.indexOf('Opera') != -1); var isIE = (!isOpera && navigator.userAgent.indexOf('MSIE') != -1)
var posx = 0; var posy = 0; var targ;
if (!e) var e = window.event; if (e.pageX || e.pageY) { posx = e.pageX; posy = e.pageY; }else if (e.clientX || e.clientY) { posx = e.clientX; posy = e.clientY; if (isIE) { posx += document.body.scrollLeft; posy += document.body.scrollTop; } }
if (e.target) targ = e.target; else if (e.srcElement) targ = e.srcElement;
function getObjNN4(obj,name) { var x = obj.layers; var thereturn; for (var i=0;i { if (x[i].id == name) thereturn = x[i]; else if (x[i].layers.length) var tmp = getObjNN4(x[i],name); if (tmp) thereturn = tmp; } return thereturn; }
Hi there... I will mention (again.. I've posted before) that I am new to DreamWeaver...
I'm designing a Student Intranet and I have created a template for the student section and I have a Pop-Up menu attached to images within it. i.e. When you mouseover the Curriculum image to shows the menu of all of the courses offered.
That's all fine and dandy.
Now, I need to create the Faculty section. I've taken my student template, saved as, and saved it as a faculty template so I can add additional menus. On the additional images such as "Academics" I would like a Pop-Up menu just like the one in student. But when I go to assign that behavior to the image it is greyed out. I have opened up many other files and attempted to assign a pop-up menu but it is *always* greyed out... even for the one's that have previously had pop-up menus.
Alex has released his first ever wordpress theme - Alexified.
The alexified theme looks beautiful and clean. It is one of the nicest three column wordpress themes I have seen. Moreover it is CSS based.
However there is a small problem. The left column appears before the central content which is not very SEO friendly.
Events: A Introduction to the Model of GUI programing
Xah Lee, 2005-05
In Graphical User Interface (GUI) programing, there's the concept of event. For example, moving the mouse, clicking a mouse button, switch to a different window, hitting a key. The software needs to respond to these things. The way it works is that, the programer writes code that draw buttons, menus, windows etc. And the programer write his program so that it knows the mouse position, mouse click, keyboard press, or any other signal from input devices. The programer also writes code so that for example if a mouse click happened, and its position is inside a button, then some function is called as a reaction.
All this is very tedious and very complex. What happens today is that most of the common tasks for GUI software are already written as a package called framework. That is to say, the codes to draw GUI elements such as windows or buttons or dialogue popups, and the detection of input signals such as button clicking or menu selection or keyboard inputs, are all integrated together as a pre-written set of code. The programer is relieved of writing these tedious code. Instead, he call predefined functions in the framework to deal with many issues related to creating a GUI.
In such a framework, it is still quite complicated. Such framework often comes in the guise of Operating System Developer's Kit. For example, writing application in Mac OS uses Apple's kit called Cocoa, Carbon, Toolbox, and there's also Microsoft's Foundation Classes (MFC) and Linux has frameworks such as Gnome, and Java offers its own GUI framework called AWK and Swing.
All these frameworks are incompatible with each other, but the model they use are basically the same. In today's personal computing, one basically have graphical “Windows”, and in it one has “Menus”, and “Buttons”, “Dialogues”. User point or click on these to tell the software to do specific things. For the programer, the way it works in these frameworks is like this:
In the framework, GUI elements such as Windows, Menus, Buttons are collectively called “widgets”. For each GUI element there is a pre-defined function that draws them. The programer calls these functions to draw them. When a user act on these widgets such as pressing a button, the widget's function will receive a signal. Each widget may be associated with different types of signals. For example, Windows can be dragged or resized, while a button can be clicked, a menu has items to be selected. When a Window is dragged, the corresponding widget function might get a signal that is the positions of beginning and ending coordinates. When a window is closed, the widget function will get a “close” signal. When a button is clicked, that button's widget function will get a “click” signal. When a menu is pulled, that menu's widget function will get a signal of the selected item.
For each widget-drawing function the programer called, he assigns to it a function called “event handler”. These event handlers are called and are given the signals when user acts on them. For example, when a button is clicked, the button widget function automatically calls its event handler function and gives it “clicked” as argument.
The programer doesn't have to worry about how the button function knew when it is being pressed. All that is implemented in the framework. The GUI programer today only needs to call these widget function as to design the appearance of the window, where the button shows up, what menu items are there etc, and assign a function (event handler) to each of these functions, so that when these GUI elements are hit, the widge functions call the programer's event handler functions, which do whatever computation the software is actually supposed to do. HTML, DOM, JavaScript, and the Browser as a GUI Application Platform
In writing Web Application using JavaScript, the technologies involved are HTML, DOM, JavaScript, and the Browser.
The HTML (and related technologies such as XML and CSS) are used to show the GUI widgets and content. DOM ascribes to HTML a standard definition of structural meaning so that it can be manipulated programmatically. And, JavaScript is the language that actually lets the programer program what happens. While the browser, is the underlying engine that ties everything together. It takes care of rendering the HTML, and takes care of knowing all the mouse positions and register all events (user actions) such as keystroks, mouse movement, clicks, menu pulls, window closing etc. It takes care of interpreting the JavaScript code, and will execute them when a event happens.
Here, the GUI is the browser window and HTML elements (radio checklist, check box list, menu list, text field, button, window pane/frame etc.). The events (user actions) are defined by DOM. They are for example: oncopy, ondrag, onload, onclick, onkeydown, onmouseover. And the actions (event handlers) are JavaScript functions the user writes.
For example, it may be desired to change the cursor icon to a finger when the mouse is moved over a hyperlink. So, a hyperlink (considered as a widget) has a MouseOver event, and the programer can assign a event handler to it, so when a mouse hovers over a link, that function is called, and the function's code changes the mouse pointer icon to a finger icon.
To associate a event handler to a HTML widget, there are two ways. One way is to put the code directly inside the HTML tag, like this:
Hover Over Me!
Alternatively, a cleaner way is to give a ID to a HTML element, and in your JavaScript assign a event handler to that ID. This way, your HTML/XML will have a clean structure, while all behavior related code are moved to your JavaScript's source code. Here's how the code would look like:
Hover Over Me!
In this example, when mouse hovers over the P tag, the browser sends a signal (called “event”) to the JS engine embedded in the browser, and it calls the doThis function (which is your event handler), and your function do whatever you had it do. (change color, open a window, send email, send form, pop up a dialog... etc.)
I have a PHP question, that I bet is pretty simple, but I only play around with the language to do a few website things.
Recently, the webserver I am hosted on has upgraded to PHP5 and broken one of the main drivers of my website. I'm hoping you may be able to help.
Explanation of problem: My website has an "index" table with links. When you click a link, PHP will go out, grab an HTML document, and insert that into a main table also on my index page. This is no longer working since the upgrade.
My website is at www.erikwilson.net if you are curious. The links I am referring to are in the "Site Stuff" table.
This all worked perfectly before the upgrade to PHP5.
See anything that would cause this to fail in PHP5 or how I can fix it?
Example Hyperlink that is calling the PHP:< a class="nav" href="index.php?page=geocache" onmouseover = "over_image('img29');" onmouseout = "off_image('img29')"> Geocaching</a>
Actual PHP driving the page: <?php if ($page == '') { $page = "livejournal"; $l = "?"; } else { $page = "$page"; } ?>
Table the HTML will be intserted into: < table border="0" cellpadding="8" cellspacing="1" width="100%"> < tr> < td bgcolor="ffffff"> < ?php include("$page.shtml");?> < /td> < /tr> < /table>
Firefox is now giving me a popup ballon anytime I mouseover an image with the URL and dimensions of the image. The balloon is HUGE, often covering nearby controls until I mouse away. It also "sticks" sometimes, refusing to go away unless I reload the page.
How can I turn this off? When I'm doing everyday browsing, I don't need to know the image URL and dimensions of every image I mouseover!!!
This is what it looks like (Notice the image I'm mousing over has its OWN alt tag, that is showing above the addon tag):
I need a onMouseover script that will allow the following action: when one image is rolled over, another image (although a div would be much better than another image) would fade in. I really like this script from dynamic drive, but it only allows for text to appear, where I need a div or image...but at least that's the general effect I'm looking for.
I'm fairly knowledgable in html and css, so if someone could point me in the right direction for a script (or if there's a way to customize the above script to allow it to include a div), I should be able to figure out the implementation. Gah, sorry for being so vague! Please feel free to ask questions and maybe I can help clarify if necessary. :)
Nowadays it is common to complain about the accuracy of Google web search results (not image search as I have done in my earlier post). Most of the people complaining about Google web search are SEO types and those who have been affected by sudden lack of Google love.
In reality, with all its faults, Google [...]
IBM today announced a specially priced solution, for customers with 100 users or less, for small and medium business (SMB) customers adopting Oracle’s JD Edwards EnterpriseOne applications.
It is based on IBM’s “all-in-one” System i business computing platform.
The System i Solution Edition for Oracle’s JD Edwards EnterpriseOne is an integrated hardware and software solution sized specifically [...]
This SEO enhanced beauty of a WordPress plugin is coming to your doors very soon. It is widgetized, works behind a firewall, properly translates your english blog to 8 languages (chinese, french, spanish, german, italian, portuguese, korean and japanese) and cache enabled. Why the delay?
I decided to add few last-minute features like caching and widegtizing. [...]
Matt Cutts, Google’s famous search engineer, answers several often asked search engine optimization questions, in video this time. If you are developing any kind of web sites or blogs you should benefit from reading this. There is a wealth of information in these videos for both newbies and pros.
Qualities of a good site
Busting SEO [...]
Angsuman’s Translator Plugin Pro offers tremendous SEO advantage ethically to your blog by instantly providing 8 times the original number of pages. These pages are indistinguisable to search engines and are treated as any other pages of your blog. ptvguy from WordPress forums has provided a crystal clear explanation of the SEO benefits for your [...]
I thought this was an interesting article. -------------
18 Questions Your CEO Forgot to Ask When Building Your Website
Why are you always retrofitting and re-optimizing? Your CEO (or other decision maker) didn’t ask the right questions. You need to know how to build and promote a website from the ground up to be successful. Picture your perfect web presence. Visualize web 2.0 Zen. Now work backwards and apply these principles to your website among various time, budget, legacy technology, and personal ego obstacles of varying degrees in the way of your quest towards website enlightement. Welcome to the world of SEO.
There’s a big difference between an “ideal website” built in a vacuum with an unlimited budget and no competition versus retrofitting, optimizing, and improving and existing website. These are the questions your CEO forgot to ask. Make sure they get asked. If you understand the IDEAL website and the value of each component that would go into it - you can understand how to balance financial and time budgets for the highest ROI on a project, and overcome the normal hurdles that every company faces. These are the top questions your CEO forgot to ask.
Do people still use these on their actual websites? I'm helping a woman launch her website and she would like to include a sitemap. I know you can generate XML and HTML ones specifically for Google and Yahoo! and things like that, but what about plain, easy-to-read ones to actually put on your website for people browsing your website to look at? Can that still be helpful in terms of SEO?
Thanks!
Edit: Two other questions...is it better to create your own sitemap or are programs that create them for you pretty good? I found one that I thought looked good: http://www.sitemappro.com/
Also, the site in question is password protected, only members can view certain sites...should every page still be on the sitemap even though non-members won't be able to access it?
Question: I visit several websites each day (SEO / Blogger) and all of them have a password. Most of them are saved.... but is there a tool /software /something that I can use so that when I want to change my password (it has to happen someday) that will enable me to put in the password once and it will change all of my passwords for me automatically?
So I was on Amazon looking for christmas gifts, and saw some functionality I am interested in figuring out how to do, but am quite confused by, when I look at the source for the image/href. The functionality I am talking about are the divs that seem to open as if by magic. The "Find Gifts" button, and "See all 36 Product Categories" link.
Anyone know how they are doing the rollover without an onmouseover/onmouseoff state? Are they adding it dynamically? How do you get teh DIV to open and close like that?
Greets folks, I posted earlier about possibly using an image map in my header, but it doesnt seem like a great idea. Anyways, here's the requested mock-up.
What I'd like is to have this image as my header essentially.
...and when you mouseover, you get this:
Thoughts on the best way to do this?
CSS for the win!
P.S. Sorry about the image quality, trying to save you guys some load time; you get the idea though.