Register
FAQ
Calendar
Search
Today's Posts
Rules
Guidelines
SMS enable your application
via Clickatell’s fast, simple and reliable API's, built to integrate with any system.
Click here
to learn more.
Flash Website Builder
- Trendy Site Builder is a Flash Site Building tool that helps users build stunning websites.
Check Out Custom
Custom Logo Design
by LogoBee. Website Design and Free Logo Templates available.
CodingForums.com
>
Search Forums
Search Results
User Name
Remember Me?
Password
Before you post, read our:
Rules
&
Posting Guidelines
Page 1 of 3
1
2
3
>
Showing results 1 to 25 of 71
Search took
0.22
seconds.
Search:
Posts Made By:
ch4sethe5un
Forum:
JavaScript programming
01-18-2011, 06:03 PM
Replies:
1
navigation w/ jQuery/UI animations - child hover issue
Views:
1,051
Posted By
ch4sethe5un
navigation w/ jQuery/UI animations - child hover issue
So I have a navigation thats decently simple, but the JS doesnt seem to operate in the correct manner. When i hover over a child navigation list item, the parent will start its animation as well. I...
Forum:
HTML & CSS
11-03-2010, 07:17 PM
Replies:
3
Div auto-margining itself
Views:
599
Posted By
ch4sethe5un
try setting the <ol> to display:inline im not...
try setting the <ol> to display:inline im not sure if that will work.
Forum:
HTML & CSS
08-20-2010, 07:27 PM
Replies:
1
Possible to emulate FF/Mac on Win?
Views:
370
Posted By
ch4sethe5un
as for as i can think you would just need to use...
as for as i can think you would just need to use boot camp with osx. :/
I dont know if you are or not, but if your validating your html and css.. you should stand a good chance of it turning out ok...
Forum:
HTML & CSS
08-20-2010, 07:47 AM
Replies:
7
border not wrapping images correctly
Views:
750
Posted By
ch4sethe5un
Well that one in particular I am going to make...
Well that one in particular I am going to make smaller, but it was part of a extreme case test. If the person using the wordpress backend uploads and image WAY too big, then it will accomodate.
Forum:
HTML & CSS
08-20-2010, 07:41 AM
Replies:
7
border not wrapping images correctly
Views:
750
Posted By
ch4sethe5un
:D i think i just changed it when you checked lol...
:D i think i just changed it when you checked lol
Quick question: do you know if there is a way to do the borders without a set width on the div.
Forum:
HTML & CSS
08-20-2010, 07:40 AM
Replies:
7
border not wrapping images correctly
Views:
750
Posted By
ch4sethe5un
html <div class="image-box"> <img...
html
<div class="image-box">
<img class="image" alt="mu mau5" src="www.blahh.com/images/image.jpg" />
</div >
css
.page img.image { max-width:100%; border:3px solid blueViolet; }
.page...
Forum:
HTML & CSS
08-20-2010, 07:32 AM
Replies:
5
Vertical align to bottom of floating div
Views:
4,103
Posted By
ch4sethe5un
http://stackoverflow.com/questions/299870/how-to-c...
http://stackoverflow.com/questions/299870/how-to-center-an-image-horizontally-and-align-it-to-the-bottom-of-the-container
this may help you. :D
Forum:
HTML & CSS
08-20-2010, 03:38 AM
Replies:
7
border not wrapping images correctly
Views:
750
Posted By
ch4sethe5un
If it helps, that is a simplified version of my...
If it helps, that is a simplified version of my code.
<div id="content">
<div id="navi-box2"></div>
<div id="page-info">
<p>
<span class="image-box">
<img class="image" alt="mu mau5"...
Forum:
HTML & CSS
08-20-2010, 02:40 AM
Replies:
3
How to: Achieve /home or like /about?
Views:
1,178
Posted By
ch4sethe5un
He first off is using wordpress, and you can set...
He first off is using wordpress, and you can set that up easily to do it for you.
here is a good pretty url tutorial: http://net.tutsplus.com/tutorials/other/using-htaccess-files-for-pretty-urls/
Forum:
HTML & CSS
08-20-2010, 01:39 AM
Replies:
7
border not wrapping images correctly
Views:
750
Posted By
ch4sethe5un
border not wrapping images correctly
http://www.mu-guides.com/basics/story/
Hello, so there are three images on this page. The first one looks fine but the second one down does not "hug" the image and neither does the third.
Im...
Forum:
HTML & CSS
08-19-2010, 12:33 AM
Replies:
9
Centering in css (help)
Views:
1,292
Posted By
ch4sethe5un
i noticed that you pulled the div#footer out of...
i noticed that you pulled the div#footer out of div#container.
The #container was bounding the #footer to a width of 970px.
If you pull the #footer out, then you should set the width of the...
Forum:
HTML & CSS
08-18-2010, 11:56 PM
Replies:
9
Centering in css (help)
Views:
1,292
Posted By
ch4sethe5un
First, you dont have a #footer with a <span> in...
First, you dont have a #footer with a <span> in it, in your code.
So that css above should be like this
#footer {
background:yellow; <----thats just so i can see the footer
clear:both; <---...
Forum:
HTML & CSS
08-17-2010, 11:43 PM
Replies:
9
Centering in css (help)
Views:
1,292
Posted By
ch4sethe5un
http://www.w3schools.com/css/pr_class_display.asp...
http://www.w3schools.com/css/pr_class_display.asp
Play with these examples here. I learned a lot from hitting the "try it yourself" button and just experimenting.
Block level elements have line...
Forum:
HTML & CSS
08-17-2010, 11:29 PM
Replies:
9
Centering in css (help)
Views:
1,292
Posted By
ch4sethe5un
For the centering issue: In the div#header2,...
For the centering issue:
In the div#header2, the span tag is an inline element.
This code should help:
#header2 span {
display:block;
margin:0 auto;
width:740px; <-- thats just an arbitrary...
Forum:
HTML & CSS
08-17-2010, 11:16 PM
Replies:
17
making inner div 100 percent height
Views:
12,190
Posted By
ch4sethe5un
why not try min-height again? To me it...
why not try min-height again?
To me it sounds like one of these two would be a good solution for you.
http://boagworld.com/technology/fixed-footers-without-javascript...
Forum:
HTML & CSS
08-17-2010, 02:38 AM
Replies:
3
Body content overlapping footer
Views:
1,123
Posted By
ch4sethe5un
this method is good too. less code, as well. ...
this method is good too. less code, as well.
http://ryanfait.com/sticky-footer/
Forum:
HTML & CSS
08-17-2010, 02:13 AM
Replies:
2
css or php capitalization
Views:
982
Posted By
ch4sethe5un
css or php capitalization
Does it matter if i capitalize data with css(text-transform:capitalize) or php(ucwords())?
I know this may seem like a over exaggerated question, but i was thinking in context of other scenarios.
...
Forum:
HTML & CSS
08-17-2010, 02:05 AM
Replies:
4
keep a fixed div centered on window resize??
Views:
3,006
Posted By
ch4sethe5un
Welcome to CF! This is an over-complicated...
Welcome to CF!
This is an over-complicated way that can be applied to different scenarios. I dont know how useful it will be though.. :D
You can do it with two backgrounds. One that is attached...
Forum:
HTML & CSS
08-16-2010, 08:15 PM
Replies:
1
Email sign up form
Views:
1,207
Posted By
ch4sethe5un
im not sure what the question is, but wufoo has...
im not sure what the question is, but wufoo has really simple nice email forms you can make that will work nicely with wordpress.
Forum:
HTML & CSS
08-16-2010, 04:09 AM
Replies:
4
Need help modifying template
Views:
624
Posted By
ch4sethe5un
do you have a link online to the website, not the...
do you have a link online to the website, not the template?
Forum:
HTML & CSS
08-14-2010, 04:30 AM
Replies:
4
text-align:justify isn't working & DIVs overlapping..
Views:
1,872
Posted By
ch4sethe5un
You have clear:both; on the footer so the...
You have clear:both; on the footer so the floating is 'reset'. No need for clear:right on the .mainbox
.menubox {
float:left;
width:250px; width was 18%
margin:10px 15px 10px 10px;
...
Forum:
HTML & CSS
08-14-2010, 03:14 AM
Replies:
4
text-align:justify isn't working & DIVs overlapping..
Views:
1,872
Posted By
ch4sethe5un
.mainbox { clear:right; width:73%; ...
.mainbox {
clear:right;
width:73%;
margin:10px 15px 10px 10px;
padding:20px;
color:navy
/* border:1px solid #000; */
}
.mainbox.p {
Forum:
HTML & CSS
08-13-2010, 10:28 PM
Replies:
10
Resolved
Missing Background images
Views:
1,863
Posted By
ch4sethe5un
I dont know what your aiming for, but maybe this...
I dont know what your aiming for, but maybe this will help..
Are you building locally?
#produce {
position: absolute;
float: left;
background-image: url(images/produce.png);
...
Forum:
HTML & CSS
08-13-2010, 10:03 PM
Replies:
4
URGENT Wordpress CSS/HTML Sidebar Issue -- PLEASE HELP!
Views:
1,399
Posted By
ch4sethe5un
or you can try to absolute position the sidebar...
or you can try to absolute position the sidebar with:
#sidebar {
background-image:url("http://www.freelancereview.net/images/pinktastic/bgSidebarPixel.jpg");
float:right;
position:absolute;...
Forum:
HTML & CSS
08-13-2010, 09:55 PM
Replies:
4
URGENT Wordpress CSS/HTML Sidebar Issue -- PLEASE HELP!
Views:
1,399
Posted By
ch4sethe5un
http://www.freelancereview.net/vintage-movie-photo...
http://www.freelancereview.net/vintage-movie-photography-100-glamorous-celebrity-photos/
On that site you have a div with an id="posts" that wraps all the content into a width:650px; leaving the...
Showing results 1 to 25 of 71
Page 1 of 3
1
2
3
>
Forum Jump
User Control Panel
Private Messages
Subscriptions
Who's Online
Search Forums
Forums Home
:: Client side development
JavaScript programming
DOM and JSON scripting
Ajax and Design
JavaScript frameworks
Post a JavaScript
HTML & CSS
XML
Flash & ActionScript
Adobe Flex
Graphics and Multimedia discussions
General web building
Site reviews
Building for mobile devices
:: Server side development
Apache configuration
Perl/ CGI
PHP
Post a PHP snippet
MySQL
Other Databases
Ruby & Ruby On Rails
ASP
ASP.NET
Java and JSP
Other server side languages/ issues
ColdFusion
Python
:: Computing & Sciences
Computer Programming
Computer/PC discussions
Geek News and Humour
Web Projects and Services Marketplace
Web Projects
Small projects (quick fixes and changes)
Medium projects (new script, new features, etc)
Large Projects (new web application, complex features etc)
Unknown sized projects (request quote)
Vacant job positions
Looking for work/ for hire
Project collaboration/ partnership
Paid work offers and requests (Now CLOSED)
Career, job, and business ideas or advice
Domains, Sites, and Designs for sale
Domains for sale
Websites for sale
Design templates and graphics for sale
:: Other forums
Forum feedback and announcements
All times are GMT +1. The time now is
04:34 AM
.
Web Hosting UK
|
Dedicated Server Hosting
|
Shareware Junction
|
Software Geek
|
Flash file uploader
|
Cloud Server
|
Web Hosting Australia
Home
-
Contact Us
-
Archives
-
Link to CF
-
Resources
-
Top
Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.