|
|
|
Sunday, 20 May 2012
|
|
Home
|
|
Friday, 24 November 2006 |
|
Today I implemented Userplane Audio/Visual WebChat into obeoneweb. The module for starting WebChat is located in the upper right hand corner of the Home page and may be located on an assortment of other pages throughout the site. This is the instant install version of Ulerplane WebChat and I am working to implement an integrated version which should be up and running sooooon! |
|
Saturday, 28 October 2006 |
jWebSolution.com the parent site to obeoneweb has recently obtained a face lift. These updates
included creation of a new template, adding drop-down menus,
implementing a photo gallery, and many more. I'll also be adding obeoneweb template at jWebSolution
for purchase.
|
|
HTML to be 'Incrementally Evolved' |
|
Sunday, 29 October 2006 |
|
It has been decided that HTML is going to be incrementally updated, as the W3C believe that their efforts with XHTML are going unnoticed or unused by many websites out there. HTML is going to be worked on in parallel with XHTML (but with no dependencies), with the W3C trying to evolve HTML to a point where it's easier and logical for everybody to transition to XHTML. However, their work is still going to attempt to improve HTML in itself, with work on forms moving towards transitioning into XForms, but bearing in mind the work done by Webforms. In addition, the W3C's HTML validator is going to get improved, with Tim Berners-Lee wanting it to 'check (even) more stuff, be (even) more helpful, and prioritize carefully its errors, warning and mild chidings'. This looks like a nice step forward for the W3C, and will hopefully leave all the squabbling and procrastination behind.
|
|
Joomla! 1.5 beta Available |
|
Monday, 23 October 2006 |
As of 12 October, Joomla!
releases the next generation framework built from the ground up. Joomla! 1.5 beta
delivers more simplicity for the user and much more power for
developers. The innovation and skill of our development team is
clearly setting higher and higher standards.
But before we get
into reams of detail about just how good Joomla! 1.5 beta is, remember
this is a beta and is not yet ready for use on a production website.
We need the community to roll up its sleeves and seek out bugs (and
feed this back to the development working group), before we enter the
release candidate phase.
Joomla! 1.5 beta marks the most
significant watershed in Joomla's history. This effort represents a
complete refactoring of the Joomla! codebase and leverages a new API
that allows developers to deliver more robust and innovative
applications than ever before. Joomla! 1.5 means freedom of choice:
you choose how it operates, y ou choose how it integrates, you choose
what the output is ... you choose how users are authenticated. For
both the user and the developer, Joomla! 1.5 beta is a simplified yet
more powerful system, and from the developer's perspective, provides
them with the freedom and flexibilty to build anything they want.
Lead developer Johan Janssens said 12 October is a giant step for the
Joomlasphere! "Open source projects are delivering incredible power
and features to end users — we've taken things a step further by
building an opportunity for unlimited extendibility for developers," he
said. "Once developers get to see how easily 1.5 can leverage their
own ideas as plugins, they will certainly be a big part of continuing
Joomla's incredible growth. You only need to take a look at the
Joomlasphere to understand how amazing the future can be."
|
|
Saturday, 21 October 2006 |
Template Layout using CSS and div Tags
Content Body
The following is a template layout which can be used
for many
purposes. It could be used as a primary template for setting up
web design layouts, or can be embedded within the layout as shown here
for formatting specific areas of your web site. This particular
example
is fluid; therefore, it will expand as you re-size your browser.
The right Sidebar Insert has a fixed width; therefore, it will not
expand.
The code for this template is shown
below. You may hit
the '+' button to expand the data box. Feel free to take
and use the code however you feel fit.
In coming days/weeks I will be adding additional
template layouts for
your
viewing and usage. They will include multiple colum, with left
and right areas, for adding menus and advertisement locations.
| Template Layout - Nested Code |
[+]
|
<html>
<head>
<title>obeoneweb.com : Template Layout Techniques - Nested: using CSS and div
Tags</title>
<style type="text/css"> @import "all.css";
.TL_nested {
margin:20px 20px 0px 20px;
}
#content_area {
border:1px dashed #CCCCCC;
background:#fff;
margin-bottom: 10px;
margin-top: 10px;
}
#content_area #sidebar_insert {
border-left:1px dotted #CCCCCC;
border-bottom:1px dotted #CCCCCC;
float:right;
width:200px;
background:#FBFBFB;
margin:0px 0px 10px 10px;
}
#content_area p, #sidebar_insert p,
#content_area h1, #sidebar_insert h1,
#content_area pre, #sidebar_insert pre {
margin:0px 10px 10px 10px;
}
#content_area h2, #sidebar_insert h2 {
margin:0px 10px 10px 10px;
}
#content_area p, #sidebar_insert p,#content_area pre, #sidebar_insert pre {
font: 11px Verdana, Arial, Helvetica, sans-serif;
font-weight: normal;
padding-top:0px;
color: #000000;
}
#content_area h1, #sidebar_insert h1 {
font: 16px Georgia, Times, serif;
font-weight: normal;
padding-top:10px;
color: #906700;
}
#sidebar_insert h2, #content_area h2 {
font: 14px Georgia, Times, serif;
font-weight: normal;
padding-top: 10px;
color: #6666CC;
}
#sidebar_insert p {
font:10px Verdana, Arial, Helvetica, sans-serif;
padding-top:0;
}
</style>
</head>
<body class="TL_nested">
<div id="content_area">
<div id="sidebar_insert">
<h2>Sidebar Insert</h2>
<p>In this area you can add additional text, images, buttons, and/or
menu items.</p>
<p><strong>Blog Categories<strong></strong></strong></p>
<p><a
xhref="http://obeoneweb.com/code-and-design-concepts/code-and- web-design-concepts/">Web
Design and Code</a><br />
<a xhref="http://obeoneweb.com/computer-technology/computer- technology/">Computer
Technology</a><br />
<a xhref="http://obeoneweb.com/advertising/ advertising/">Advertising</a><br />
<a
xhref="http://obeoneweb.com/travel-and- discussion/travel-and-discussion/">Travel
and Discussion</a></p>
</div>
<h1>Template Layout using CSS and div Tags</h1>
<h2>Content Body</h2>
<p>The following is a template layout which can be used
for many
purposes. It could be used as a primary template for setting up
web design layouts, or can be embedded within the layout as shown here
for formatting specific areas of your web site. This particular
example
is fluid; therefore, it will expand as you re-size your browser.
The right Sidebar Insert has a fixed width; therefore, it will not
expand.<br />
</p>
<p><strong>The code for this template is shown
below. Please hit
the read more button. Feel free to take
and use the code however you feel fit.</strong><br />
</p>
<p>In coming days/weeks I will be adding additional
template layouts for
your
viewing and usage. They will include multiple colum, with left
and right areas, for adding menus and advertisement locations.<br />
</p>
</div>
</body>
</html>
|
|
Top 10 Web Developer Libraries |
|
Monday, 18 September 2006 |
|
I decided to make a list of the top libraries that I have come
across or that I personally use. Libraries can be a web developers best
friend. They are great resources to learn from and can save hours and
hours of time. These libraries include JavaScript, Ajax, Colors, PHP,
and CSS. These should be in any web developers bookmarks, so go ahead
and look through these libraries and bookmark your favorite ones.
|
|
Read more...
|
|
Sunday, 02 July 2006 |
|
Well, I've decided to prepare a blog entry about my dog, Shep. He has been with me for about 12 years now, and has traveled with me just about every place I've been. He has been in an airplane, and been smuggled accross the border into Canada. He thinks that chair right there is his, but it's not. The second picture below is him tending to a hurt foot.
This first of the three pictures below was taken when we lived in Tennessee. It was one of those rare winters when it snowed. He is originally from Michigan, so he is used to cold weather, but the freak snow storm provided a nice white coating over the ground. The next two pictures were taken along the coast in New Orleans. Believe it or not, the only thing I had to do was ask him to stay in that tree, while I walked away to take a picture of the whole thing. I think he knows when I want to take pictures and sort of likes it.
These were taken when he was a bit agitated. I decided to give him a bath, with soap, in the river, a place he is not used to taking a bath. He got quite upset, as you can see in the second picture. The last was after he got home from getting his teeth cleaned. He was still under a bit, and feeling quite bad.
Well, I hope ya'll liked viewing my dog shep. He is truely part of the family, and has the disposition of a human, sort of like a child. |
|
|
|
|
Newsflash |
jWebSolution.com the parent site to obeoneweb has recently obtained a face lift. These updates
included creation of a new template, adding drop-down menus,
implementing a photo gallery, and many more. I'll also be adding obeoneweb template at jWebSolution
for purchase.
|
|
|