273 Posted Topics

Member Avatar for Mindy Sue

Hi Mindy, It's fine seeing all the classes but if we don't know where you have assigned them, they pretty much useless. Could you please post your HTML source as well.

Member Avatar for rajendra.parmar
0
143
Member Avatar for simondmeredith

Form tags do the trick, here's an example [CODE=HTML] <form> <table> <tr> <td>Name</td> <td><input type="text" name="name"></td> </tr> <tr> <td colspan="2"><img width="200px" height="100px" src="images/myspacer.gif"/></td> </tr> <tr> <td>Email</td> <td><input type="text" name="email"></td> </tr> </table> </form> [/CODE] Then just add an action to it [CODE] <form method="post" action="includes/process.php"> [/CODE]

Member Avatar for rajendra.parmar
0
78
Member Avatar for beforetheyknew
Member Avatar for whiteyoh

[I]Additionally:[/I] If you would like to style content from another site within your iframe, you can use javascript.. [URL="http://jquery.com/"]Jquery[/URL] is a very good place to start (JS Library) and [URL="http://getfirebug.com/"]Firebug [/URL](find all the classes you would like to change easily).

Member Avatar for macneato
0
103
Member Avatar for Lolalola

I'm not really sure what you trying to say, CSS 3 will allow for multiple backgrounds, but im sure we can find a work around. Perhaps a screenshot would be very helpful

Member Avatar for macneato
0
78
Member Avatar for Mindy Sue

Very [B]VERY[/B] easy. Use classes. If im getting what you saying right. You currently using something like this [CODE=CSS] table { width: 200px; border: 1px solid #000 } [/CODE] So if you had to use classes it would change to this; [CODE=CSS] table.shortwidth { width: 200px; border: 1px solid #000 …

Member Avatar for nkdweb
0
93
Member Avatar for WickidGRAFX

Regarding your muliple IDs, change the following: [CODE=HTML] <img id="img_nav" src="images/menu_nav_body.jpg" usemap="#img_nav_map" /> <map id="img_nav_map"> <area shape="rect" coords="30,10,196,35" href="home" alt="Home" title="Home" /> <area shape="rect" coords="30,39,196,64" href="Login" alt="Login or Register" title="Login or Register" /> <area shape="rect" coords="30,68,196,93" href="About" alt="About Us" title="About Us" /> <area shape="rect" coords="30,101,196,126" href="Terms of Use" alt="Terms of …

Member Avatar for knausO
0
104
Member Avatar for jeansss

I'd say use PHP and mySQL to pull it off properly. Here is a bit of an example [B]Create the following table[/B] in a database called "client_list" [CODE=MYSQL] -- Database: `client_list` -- -- -------------------------------------------------------- -- -- Table structure for table `clients` -- CREATE TABLE IF NOT EXISTS `clients` ( `clientid` …

Member Avatar for macneato
0
74
Member Avatar for Lukas Larsson

Lukas Larsson, To be honest, I think you having issues with linking your images. Cause everything should be working fine (including widths and heights). Ensure your css image link is relative to where the css file is saved.

Member Avatar for cfajohnson
0
137
Member Avatar for becraig

I would sugguest going Jquery. Use ajax to pull content into a DIV with a max height of 690px. Since the div will automatically size depending on the content as well as just be a whole lot neater

Member Avatar for ArtphotoasiA
0
85
Member Avatar for jazz_vill

Heres i nice little tutorial i quickly found for you. [URL="http://www.phpeasystep.com/phptu/12.html"]External Website[/URL] Should walk you right through the process

Member Avatar for macneato
0
102
Member Avatar for andanjin

I'm not too sure what you on about. But this is what I'm getting. You would like one menu, to link to all your pages, so that you will not need to edit every individual page to update your menu? You could use ajax to call your menu from a …

Member Avatar for andanjin
0
195
Member Avatar for hno

Hi, You talking about the transition? Jquery will do the job, there are tons of scripts out there, here's [URL="http://www.texotela.co.uk/code/jquery/newsticker/"]one [/URL]I quickly googled.

Member Avatar for macneato
0
78
Member Avatar for silvertwister10

Or, Just add the following css; Method 1 [CODE] html {overflow-y:scroll;} [/CODE] Method 2 [CODE] html {min-height: 100%; margin-bottom: 1px;} [/CODE]

Member Avatar for macneato
0
49
Member Avatar for clarkey

Hi, This is an easy one, change your CSS to the following; [CODE=CSS] ul { margin: 0; padding: 0; list-style: none; width: auto; } ul li { position: relative; top: 5px; left: 1px; display: inline-block; } li ul { position: absolute; left: 0; top: 25px; display: none; } ul li …

Member Avatar for clarkey
0
92
Member Avatar for lordcamel

Here is the fix you will need, just update your css to the following; [CODE] * { margin: 0; } html, body { height: auto; } body { font-family: "lucida sans", verdana, arial, helvetica, sans-serif; font-size: 75%; } #wrapper { background: url(http://www.bogies-bar.com/b/themes/bogies/images/bg_repeat_nav.png) repeat-y; } #nav { border-left: 2px solid #666; …

Member Avatar for macneato
0
101
Member Avatar for OmniX

It really all depends though, if you absolutely position an element in a parent that is already positioned relatively, it will be positioned absolutely to its parent and not the window. [B]We do need the source to help you[/B]. -- Yet again, i've noticed the same issue with ie6 quite …

Member Avatar for OmniX
-1
159
Member Avatar for Sarama2030
Member Avatar for flameringxx

You would have to probably go jquery. Here's [URL="http://malsup.com/jquery/media/"]something[/URL] i quickly sourced. Sure if you searched you could probably find something better.

Member Avatar for macneato
0
35
Member Avatar for fuchsia555

Hi, Its a simple case of using colspans. Here is a working example [CODE=HTML] <table width="1000px" border="0" height="300px"> <tr style="height: 1px;"> <td> </td> <td> </td> <td> </td> </tr> <tr> <td width="300" bgcolor="red"> </td> <td colspan="2" width="700" bgcolor="blue"> </td> </tr> <tr> <td colspan="2" width="700" bgcolor="blue"> </td> <td width="300" bgcolor="red"> </td> </tr> …

Member Avatar for macneato
0
84
Member Avatar for blueaporia

It is possible, but it really depends on your design and you will probably need to rock some jquery as well, to get window heights. Gonna be alot of work, I'm telling you now (if your design is half decent)

Member Avatar for macneato
0
42
Member Avatar for Maverick27

Hi Mave, Dont see why we skipping parsing everything. none the less. I would just as use XSL. Here's an example of some basic styling. [CODE=XSL] <?xml version="1.0" encoding="ISO-8859-1"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:template match="news"> <html> <body> <h2><xsl:value-of select="title"/></h2> <xsl:for-each select="//item"> <xsl:sort select="date"/> <p><b><xsl:value-of select="unique_deep_link"/></b></p> <p><xsl:value-of select="date"/></p> <p><xsl:value-of select="detailDate"/></p> <p><xsl:value-of select="title"/></p> …

Member Avatar for macneato
0
101
Member Avatar for Duki

Hi Duki, I took a look in both ie6 and firefox, cant see any difference to be totally honest.

Member Avatar for MidiMagic
0
80
Member Avatar for Website Designs

I have to agree with bob, dynamic drive is a really nice starting point, but eventually you going to have to start doing them yourself (either js or css) and you'll notice it's really just a fancy ul

Member Avatar for macneato
0
131
Member Avatar for smilsuren
Member Avatar for bjdmb

hi bjdmb, I took a look at your code... Few things i have to mention immediately if you coding XHTML. [B]Line Breaks[/B] [CODE=HTML] <br /> [/CODE] Notice how the line break is closed afterwards. Same goes for an image. Now onto the issues you having. Since I haven't got anything …

Member Avatar for tranchibinh
0
176
Member Avatar for GReddy4u

Change your selector as follows; [CODE=CSS] .slider-post .button { background:transparent url(images/buttonbg.png) repeat-x scroll center top; color:#FFFFFF; cursor:pointer; float:left; font-family:Georgia,"Times New Roman",Times,serif; font-size:14px; font-weight:bold; text-align:center; width:82px; } [/CODE] That should do the trick

Member Avatar for tranchibinh
0
143
Member Avatar for vishalkhialani

I'd say javascript (jquery) would be the way to go. Then on an click event you just swap the image using ajax

Member Avatar for infinitymedia
0
125
Member Avatar for LadyGaGa
Member Avatar for padrict

Hi padrict, Not too sure if I understand your issue. But try this out add the following class to the div below the h4 [CODE=HTML] <h4>Yellow Dog Inventory Features:</h4> <div class="leftmenu _col"> ... </div> [/CODE] Here is the CSS [CODE=CSS] .leftmenu {float:left;position:relative;} [/CODE]

Member Avatar for ljianyih
0
137
Member Avatar for flismayer

Hi, Change it to the following [CODE=CSS] #apDiv3 { position:relative; margin: 0 auto; width:1100px; height:650px; z-index:1; background-color: #3F3151; } [/CODE] You should really try keep your container 960, check out this [URL="http://960.gs/"]link[/URL]

Member Avatar for Romil797
0
160
Member Avatar for ribot

I would sugguest putting both boxes in a container and giving the illusion that the one div is growing (definitely not worded right, but look at the example and you will understand what i mean) [CODE=CSS] #container { width: 800px; float:left; background: red; display: table-row; } #left_column { float:left; width: …

Member Avatar for langsor
0
167
Member Avatar for xyeshu
Member Avatar for macneato
0
97
Member Avatar for foreversubu

Not sure what you mean, but here is a [URL="http://databases.about.com/od/administration/a/softwareoptions.htm"]link [/URL]get to reading

Member Avatar for chankya
0
102
Member Avatar for fuchsia555
Member Avatar for macneato
0
193
Member Avatar for candaceusa

Not really a wp developer myself. But using bug I can see none of your list items are pulling through. And if you can set attributes, couldnt you just align left? Nevertheless... I would recommend, CSS... Add the following selector to your stylesheet; [CODE=CSS] .widgetcontent ul img {float:left; padding: 0 …

Member Avatar for candaceusa
0
92
Member Avatar for oneat

Hi Oneat, This is what you want to do [--A--][-B-] Basically heres what you want to do [CODE=CSS] .container_a { width:400px; height:400px; float:left; background:red } .container_b { width:200px; height:400px; float:left; background:blue } [/CODE] [CODE=HTML] <div class="container_a"> <p>this is some copy this is some copy this is some copy this is …

Member Avatar for ko ko
0
75
Member Avatar for OmniX

Heres a [URL="http://notan00b.com/2009/09/jquery-php-and-forms/"]link[/URL] I found after googling your issue. Does use jquery though. But check it out, might be helpful

Member Avatar for OmniX
0
91
Member Avatar for Kruptein

Scranton is correct. Go for shorthand though [CODE=CSS] background:#fff url(../images/myimage.jpg) no-repeat fixed; [/CODE] Oh by the way, you must ensure your image is large enough or gradients into your default background colour or its just gonna look strange.

Member Avatar for Kruptein
0
73
Member Avatar for grungina

The issue is your body padding... But removing it won't make much sense since you have a negative margin on your topnav class. So what I would do is remove topnav out of the content id and add it to the wrapper id. Here is an exmaple; [CODE] <!DOCTYPE html …

Member Avatar for macneato
0
153
Member Avatar for ArtphotoasiA

Why wouldnt you use sprites? Then have one generic class. E.g. [CODE] /* Generic corners */ .rounded_corners { background: url(../images/corners.png) no-repeat; width: 5px height: 5px; position:absolute; } /* Specific Corners */ .top_left_c { top:0; left:0; background-position: 0 0; } .top_right_c { top:0; right:0; background-position: 0 -5px; } .bottom_left_c { bottom:0; …

Member Avatar for ArtphotoasiA
0
92
Member Avatar for leegeorg07

I've tested ff, ie7 and 6. Can't see what you talking about. Wanna attach a screen?

Member Avatar for leegeorg07
0
83
Member Avatar for prachipote

If its IE6 or 7, you will need a [URL="http://24ways.org/2007/supersleight-transparent-png-in-ie6"]png fix[/URL] or go for PNG-8 instead.

Member Avatar for ko ko
0
75
Member Avatar for prachipote
Member Avatar for macneato
0
17
Member Avatar for rishabh95verma

Hi rishabh95verma, haha got told off I see. Well it might be a little delayed but just for the sake of others, you would need to use facebooks API and develop a desktop application since i dont see many people giving their login details through your site.

Member Avatar for macneato
0
99
Member Avatar for dasatti

Ok, it looks like an accordion to me. But pritaeas is right, some html would be nice, see how you structured everything.

Member Avatar for macneato
0
86
Member Avatar for dtrain31

Popped the url given into ie and everything seemed to work fine (links wise). A few things I did notice though and some tips for when you develop in the future. Try keep all your links lowercase, don't link to pages with spaces "spray tanning.html" instead, use an underscore and …

Member Avatar for macneato
0
50
Member Avatar for web3
Member Avatar for macneato

Hi, so im pulling arrays from facebook. But i would like to sort them. Here is how the arrays look [CODE] Array ( [0] => Array ( [eid] => 203966119376 [name] => Funtastic - a show for the whole family! [tagline] => [nid] => 0 [pic] => http://profile.ak.fbcdn.net/object2/857/53/s203966119376_6012.jpg [pic_big] => …

Member Avatar for macneato
0
205
Member Avatar for macneato

Over the next few weeks (or days - depending on how much time i have) I'll help with the very basics of SQL (and PHP). These are the points I'll be covering (all from scratch of course) Local Server setting up [LIST] [*]php [*]mysql [*]apache [/LIST] Database Basics [LIST] [*]Simple …

Member Avatar for peter_budo
0
235

The End.