cotonti.com : Modification of news https://www.cotonti.com Последние сообщения в теме Cotonti en Mon, 03 Nov 2025 11:51:17 -0000 GHengeveld Typing works quite well because the keys are quite big, it works mostly like a regular keyboard. The iPad case/sleeve is a must have, it allows you to type much more easily because it places the iPad under an angle. Autocompletion can be very annoying though, so it's a good idea to switch that off.
Coding on it is not really an option I guess, simply because there's no app for it and also because the onscreen keyboard doesn't show the special characters needed for coding.

Did you know you can make a website/webapplication behave like a native app on iPhone/iPad? There's some special mata tags for it and with JavaScript you can do gestures.]]>
вс, 12 дек 2010 01:23:08 -0000
MIHDev
Sent from my Windows Phone 7 ;)

@Koradhil: How is the iPad for coding as my phone keyboard is just slightly too small? :(]]>
пт, 10 дек 2010 08:52:51 -0000
GHengeveld Typing this message on one ;)]]> пт, 10 дек 2010 08:25:57 -0000 pspfreak MIHDev. I took it from the original sed-light skin.]]> чт, 09 дек 2010 03:55:43 -0000 MIHDev чт, 09 дек 2010 03:44:50 -0000 pspfreak http://ipodtalkcenter.com]]> чт, 09 дек 2010 03:43:33 -0000 MIHDev 'best practices', the suggestion is to use DIV float elements instead of the tables I posted, both methods work but technically a DIV is more flexible for those choosing the CSS approach. I always say, go with what you feel comfortable with and for me the simplest thing that came to mind at 1am was using a table but their method could be better for those wishing to perform more 'jazz' on their sites. :)]]> чт, 09 дек 2010 03:42:39 -0000 pspfreak чт, 09 дек 2010 03:38:25 -0000 MIHDev
Many sites still use tables successfully for designs as many books on HTML do not focus on DIV's or CSS in detail but I would agree that using DIV's offers more flexibility for customisation through CSS although tables themselves can also function well in that regard as I know many developers have had many nightmares getting DIV elements to do what they want.

Like anything in life, there is a healthy balance to be had between simplicity and flexibility and that is generally based on what the user requires, their level of experience and also how good their CSS skills are.]]>
чт, 09 дек 2010 02:09:06 -0000
GHengeveld
Some reading:
http://www.thefutureoftheweb.com/blog/writing-semantic-html
http://dev.opera.com/articles/view/semantic-html-and-search-engine-optimiza/]]>
чт, 09 дек 2010 01:04:50 -0000
Kort ср, 08 дек 2010 22:50:44 -0000 Kingsley
thx for your explanation Kort..]]>
ср, 08 дек 2010 22:46:05 -0000
Kort
  1. I haven't heard of any confirmed negative consequences of that (although it is rumored that they exist)
  2. In some cases (i.e. forums) tables are used "traditionally".
  3. It is much easier (in some cases) to use tables rather than divs / browser-specific css / hacks.
Another good example is lists: navigation is a list, so most html-coders use uls for nav/menus now (rather than tables, divs or paragraphs).
If you're not sure about what you're doing, turn off the styles and check bare html. This will give you a better understanding.
So, if you're up to modern trends / HTML5, you should think about semantics before selecting your solutions. Using tables, however, won't kill ya.
The above example can and should definitely be done using divs.]]>
ср, 08 дек 2010 21:39:54 -0000
Kingsley # Koradhil : Please stop using tables for layout, unless it's really tabular data you're working with. In this case it clearly isn't so you shouldn't use tables. Use divs and set float:left on each of them.

Would you care to explain? I heard this before, but actually I find tables working much better (they at least do what I want from them, always have a small war going on with div's..)]]>
ср, 08 дек 2010 20:42:54 -0000
MIHDev ]]> ср, 08 дек 2010 19:50:44 -0000 GHengeveld ср, 08 дек 2010 18:18:42 -0000 pieter ср, 08 дек 2010 15:04:21 -0000 pspfreak index.tpl
<!-- BEGIN: MAIN -->
<div id="cSide">

	{INDEX_NEWS}

	
</div>
<br />

<table width="780px" border="0" cellpadding="0" cellspacing="0">
<tr>
<td>
<div class="boxHD">test1</div>
<div class="boxBody">test1</div>
</td>
<td>
<div class="boxHD">test2</div>
<div class="boxBody">test2</div>
</td>
<td>
<div class="boxHD">test3</div>
<div class="boxBody">test3</div>
</td>
</tr>
</table>


<!-- END: MAIN -->


Added 1 minute later:

Eh, it was from when I edited news. It through the thing way off! Thanks.]]>
ср, 08 дек 2010 06:23:49 -0000
MIHDev ср, 08 дек 2010 06:20:16 -0000 pspfreak
#content #cSide { float:left; width:800px; }
#content #cSide .lboxHD { color:#000001; background: url(img/SED-Light_cBoxHD.gif) no-repeat; width:800px; height:35px; line-height:35px; vertical-align:middle; font-size:.90em; text-transform:uppercase; padding:0 0 0 10px; font-weight:bold; }
#content #cSide .lboxBody { width:780px; background:#353a3f url(img/SED-Light_lBoxFT.gif) no-repeat bottom; min-height:20px; padding:10px; margin-bottom:10px; }

EDIT: There was a stray div tag. Now it works. Thanks

EDIT 2: Now i was fitting the objects to make it look better, and I ran into something
Google Chrome:
http://grabs.ipodtalkcenter.com/20101207160807.png
Firefox
http://grabs.ipodtalkcenter.com/20101207160831.png]]>
ср, 08 дек 2010 04:44:35 -0000
MIHDev
<div id="cSide"></div>
]]>
ср, 08 дек 2010 04:43:03 -0000
pspfreak http://grabs.ipodtalkcenter.com/20101207151219.png]]> ср, 08 дек 2010 04:14:57 -0000 MIHDev
Firstly, make sure you are not placing the new columns inside a
<div id="rSide"> or <div id="lSide"> unless that is what you require.

Lets say you made a new css element based on the rBoxHD and rBoxBody elements, add this to your CSS:
.boxHD { color:#3E606F; background: url(img/SED-Light_rBoxHD.gif) no-repeat; width:240px; height:35px; line-height:35px; vertical-align:middle; font-size:.90em; text-transform:uppercase; padding:0 0 0 10px; font-weight:bold; }
.boxBody { width:240px; background:#FFF url(img/SED-Light_rBoxFT.gif) no-repeat bottom; min-height:20px; padding:10px; }

Then put it all in a 3 column table with no border, cellpadding or cellspacing:
<div>
 <table width="790px" border="0" cellpadding="0" cellspacing="0">
  <tr>
     <td>
         <div class="boxHD">test1</div>
         <div class="boxBody">test1</div>
     </td>
     <td>
         <div class="boxHD">test2</div>
         <div class="boxBody">test2</div>
     </td>
     <td>
         <div class="boxHD">test3</div>
         <div class="boxBody">test3</div>
     </td>
  </tr>
 </table>
</div>

Hope this helps.

MIHDev]]>
вт, 07 дек 2010 09:25:29 -0000
pspfreak http://grabs.ipodtalkcenter.com/20101206191440.png

Here is my css. What do i need to modify in order to have 3 columns?
#content #rSide { float:right; width:520px; }
#content #rSide .rboxHD { color:#000001; background: url(img/SED-Light_rBoxHD.gif) no-repeat; width:240px; height:35px; line-height:35px; vertical-align:middle; float:left; font-size:.90em; text-transform:uppercase; padding:0 0 0 10px; font-weight:bold; }
#content #rSide .rboxBody { width:220px; background:#353a3f url(img/SED-Light_lBoxFT.gif) no-repeat bottom; min-height:20px; padding:10px; margin-bottom:10px; }

#content #rSide .rlboxHD { color:#000001; background: url(img/SED-Light_rBoxHD.gif) no-repeat; width:240px; height:35px; line-height:35px; vertical-align:right; font-size:.90em; text-transform:uppercase; padding:0 0 0 10px; font-weight:bold; }
#content #rSide .rlboxBody { width:220px; background:#353a3f url(img/SED-Light_lBoxFT.gif) no-repeat bottom; min-height:20px; padding:10px; margin-bottom:10px; }
]]>
вт, 07 дек 2010 08:15:05 -0000
MIHDev вт, 07 дек 2010 07:28:21 -0000 pspfreak вт, 07 дек 2010 06:13:50 -0000 MIHDev ]]> вт, 07 дек 2010 06:08:35 -0000 pspfreak ]]> вт, 07 дек 2010 06:08:03 -0000 MIHDev /plugins :)]]> вт, 07 дек 2010 06:07:13 -0000 pspfreak вт, 07 дек 2010 06:01:48 -0000