Prepare for Google settings before the new policy begins.
Wednesday is the last day for people to tweak those Google settings before the new policy begins, although they can change them afterward as well. Here are a...
Small Scrollable Areas Scrollable areas on webpages has become increasingly popular after being used by some leading design communities on the internet. Scrollbars can be done with a textarea or iframe tags, but a more frequent way of doing it is through using the abilities that already lies within HTML and CSS for any page [...]
Scrollable areas on webpages has become increasingly popular after being used by some leading design communities on the internet. Scrollbars can be done with a textarea or iframe tags, but a more frequent way of doing it is through using the abilities that already lies within HTML and CSS for any page element.
A normal block element, like a <div> can be set to a certain height and width. What happens when the content of the DIV exceeds the size given to it?
Enter the CSS property ‘overflow’.
CSS:
<style type="text/css">
<!--
div.scroll {
height: 200px;
width: 300px;
overflow: auto;
border: 1px solid #666;
background-color: #ccc;
padding: 8px;
}
-->
</style>
<div>
<p>This is a scrolling are created with the CSS property overflow.</p>
<p>
<span style="color: red;">This is red color</span>
Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh.</p>
<p>This is a normal paragraph.
<span style="font-weight: bold; font-size: 22px;">This is big bold text</span>
</p>
<p>This scrolling are can contain normal html like <a href="index.php">link</a></p>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh.</p>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh.</p>
</div>
Wednesday is the last day for people to tweak those Google settings before the new policy begins, although they can change them afterward as well. Here are a...
Here is the fix for Fatal error: Call to undefined function base_url() in CodeIgniter Replace in config/autoload.php $autoload['helper'] = array(”); with $autoload['helper'] = array(‘url’);
I have been working a lot with SAML recently, which is a protocol for standardizing single sign on (SSO) between sites. A good number of sites and products...
An ESB can be described as a set of components that provide the busisness tier with core integration services. The key advantage of an ESB is that it...
Jquery PHP calculator free script download The server will support a number of different operators and are structured in such a way that it is easily extensible to...
My co-workers had to include a “requre_once” statement in their models to get the DBTable class they were interested in using. This was needed if to use DB...
The Scenario You’re writing code to perform authentication for a web-based app. Your users live in one table (Site_User), your list of site permissions live in another table...
My friend Bob was asking me about this earlier so I thought I’d share this tip with the rest of the you… If you’re as annoyed as I...
I typically like to do on my server boxes is allow root access to my Mysql database from remote computers. I don’t forward the port through my router...
Recent Comments