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 2
1
2
>
Showing results 1 to 25 of 44
Search took
0.11
seconds.
Search:
Posts Made By:
Xherdas
Forum:
HTML & CSS
10-03-2012, 08:51 PM
Replies:
5
Spacing at top of page
Views:
351
Posted By
Xherdas
On your Homepage: <body> has a margin-top: 8px...
On your Homepage:
<body> has a margin-top: 8px followed by a <br /> then your image.
On your comment page:
<body> has a margin-top: 17px no <br /> then your image.
Good luck!
Forum:
HTML & CSS
10-03-2012, 08:33 PM
Replies:
9
How to make 2 styles for href links on 1 html page
Views:
721
Posted By
Xherdas
Unfortunately I do not have time to write it all...
Unfortunately I do not have time to write it all down for you, I am leaving the office.
You need to read about CSS id and class.
http://www.w3schools.com/css/css_id_class.asp
Let us know if you...
Forum:
HTML & CSS
10-01-2012, 09:57 PM
Replies:
3
Removing Flash From Menu - Need to fix formatting
Views:
301
Posted By
Xherdas
Read my previous answer carefully you will find...
Read my previous answer carefully you will find the answer!
Forum:
HTML & CSS
10-01-2012, 09:52 PM
Replies:
3
CSS: Specificity
Views:
402
Posted By
Xherdas
In-line css overwrite id's. Unless !important is...
In-line css overwrite id's. Unless !important is used.
Forum:
HTML & CSS
10-01-2012, 09:46 PM
Replies:
6
Using 2 classes on one selector
Views:
443
Posted By
Xherdas
The class .active needs to be on your <li> and...
The class .active needs to be on your <li> and not on you <a>.
You can also use :last and :active as selectors instead of using them as class. Most of the time is easier and cleaner!
Good luck!...
Forum:
HTML & CSS
09-28-2012, 07:55 PM
Replies:
5
Main HTML page randomly to take the content of other page and display it
Views:
382
Posted By
Xherdas
What is your goal exactly? If you want to...
What is your goal exactly?
If you want to display random message on homepage in html I would use
Jquery/Json.
You can get the message at random from a csv or xml file.
Forum:
HTML & CSS
09-28-2012, 07:42 PM
Replies:
3
Removing Flash From Menu - Need to fix formatting
Views:
301
Posted By
Xherdas
Fastest way to fix it. In your CSS, line...
Fastest way to fix it.
In your CSS, line 124.
Replace the #tagline for:
#tagline {
margin-left: 30px;
position: absolute;
top: 125px;
width: 924px
}
Forum:
HTML & CSS
09-28-2012, 07:35 PM
Replies:
5
HTML not linking to CSS
Views:
383
Posted By
Xherdas
It's best practice to put your css folder under...
It's best practice to put your css folder under html.
Usually it goes like this:
Root
-public_html
index.html
-css/stylesheets
styles.css
Refer to this:
Forum:
General web building
09-28-2012, 07:23 PM
Replies:
3
I will pay for anyone who finds a solution for my opencart site not getting conversio
Views:
2,187
Posted By
Xherdas
Haha not bad! I never thought about this method...
Haha not bad!
I never thought about this method to bring visitor on my website!
To answer your question, I doubt someone can find any major reason without access to your Google Analytics.
Good...
Forum:
HTML & CSS
09-28-2012, 07:15 PM
Replies:
2
Rounding Corners of Tables without images
Views:
406
Posted By
Xherdas
You can wrap your table in a div, using CSS round...
You can wrap your table in a div, using CSS round corner. Otherwise, it has to be done with images.
Forum:
HTML & CSS
06-01-2012, 09:34 PM
Replies:
2
Unwanted Scrolling
Views:
363
Posted By
Xherdas
There's 2 ways to solve your problem. More...
There's 2 ways to solve your problem.
More complex way:
Open up your .js and fix the height ajustment being added to the style of your element.
Easy way:
<div id="galLyr" class="content"...
Forum:
HTML & CSS
05-30-2012, 09:55 PM
Replies:
3
Help with web layout
Views:
355
Posted By
Xherdas
Apply this to your body. background-color:#000; ...
Apply this to your body. background-color:#000;
Create a container with border: 9px solid #56564B; margin: 35px auto; width:900px;
Put your content in that container.
If you need more help, feel...
Forum:
HTML & CSS
05-28-2012, 09:28 PM
Replies:
2
Background repeat-y
Views:
304
Posted By
Xherdas
Try this: <!DOCTYPE html> <html lang="en">...
Try this:
<!DOCTYPE html>
<html lang="en">
<head>
<title>title</title>
<style type="text/css">
#bg_top{
background-position:center top;
Forum:
General web building
05-28-2012, 09:06 PM
Replies:
1
Extract Meta data
Views:
966
Posted By
Xherdas
You can probly work something simple with google...
You can probly work something simple with google spreadsheet + Xpath...
Forum:
HTML & CSS
05-28-2012, 04:53 PM
Replies:
2
Embed a youtube video on my website in dreamweaver cs5
Views:
900
Posted By
Xherdas
On the Youtube video you want to use, click on...
On the Youtube video you want to use, click on "Share" (below the video).
Then "Embed".
From there you can use an iframe or an old embed code object.
Good luck
Forum:
HTML & CSS
05-23-2012, 08:29 PM
Replies:
10
CSS nav li a:hover not aligning.
Views:
644
Posted By
Xherdas
I see you got it working, good job! Just a...
I see you got it working, good job!
Just a thought I would change the text color to white when hovered. I find it difficult to read once hovered.
Forum:
HTML & CSS
05-23-2012, 03:11 PM
Replies:
13
how to slide an object under a div
Views:
792
Posted By
Xherdas
#col-right { width: 742px; float: right; ...
#col-right {
width: 742px;
float: right;
background-color:
white;
margin: 0px 0px 0px 0px;
z-index: -1;
position: relative;
}
Forum:
HTML & CSS
05-23-2012, 02:51 PM
Replies:
3
Something is not right
Views:
448
Posted By
Xherdas
Too many possibilities, please provide a link or...
Too many possibilities, please provide a link or the code.
Forum:
HTML & CSS
05-22-2012, 08:55 PM
Replies:
1
Simple drop shadow question (container)
Views:
258
Posted By
Xherdas
Remove the second table 'sitemap' from your...
Remove the second table 'sitemap' from your 'container'.
Good luck!
Forum:
HTML & CSS
05-22-2012, 08:32 PM
Replies:
2
Navigation Bar Not Linking
Views:
226
Posted By
Xherdas
Your problem is: the padding of the <div...
Your problem is: the padding of the <div id="header"> go over your <div id="navigation">.
You can fix the design properly or a simple work around would be:
#navigation {
position: relative;...
Forum:
HTML & CSS
05-14-2012, 09:15 PM
Replies:
5
Making CSS id as url possible?
Views:
441
Posted By
Xherdas
What are you trying to achieve using an url as an...
What are you trying to achieve using an url as an id?
Give us a bit more details, I am sure we can work something...
Forum:
HTML & CSS
05-14-2012, 09:12 PM
Replies:
5
Big image without losing quality
Views:
309
Posted By
Xherdas
Might be your server in that case... Where are...
Might be your server in that case... Where are you hosted?
Try compressing the image, e.g. with photoshop save for web and Good quality is enough, you don't need Best.
Forum:
HTML & CSS
05-14-2012, 08:31 PM
Replies:
5
Big image without losing quality
Views:
309
Posted By
Xherdas
Those are high quality and high resolution...
Those are high quality and high resolution images...
Forum:
HTML & CSS
05-14-2012, 06:36 PM
Replies:
1
Need help making a form with calculations
Views:
344
Posted By
Xherdas
This should get your started. ...
This should get your started.
http://jquery.bassistance.de/accordion/demo/?p=1.1.1
If you need more help once you have some code or a link, come back we will help you!
Good luck
Forum:
HTML & CSS
05-04-2012, 04:57 PM
Replies:
1
Apply background-image for all <div> in <body>
Views:
318
Posted By
Xherdas
Why don't you add the transparent window on the...
Why don't you add the transparent window on the background it self like they did?
Showing results 1 to 25 of 44
Page 1 of 2
1
2
>
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
11:19 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.