Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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

 
Forum Jump

All times are GMT +1. The time now is 11:19 AM.