Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,150,832 members, 7,810,201 topics. Date: Friday, 26 April 2024 at 11:29 PM

Help!!! Html Table Not Working On Moble Operamini - Webmasters - Nairaland

Nairaland Forum / Science/Technology / Webmasters / Help!!! Html Table Not Working On Moble Operamini (985 Views)

Need Help HTML+CSS+XML / Glo Operamini Free Browsing And Downloading / Help: Html Form Problem (2) (3) (4)

(1) (Reply) (Go Down)

Help!!! Html Table Not Working On Moble Operamini by Lastdon02(m): 9:12pm On Nov 30, 2013
sad GOOD day my fellow gurus please i am having a great problem on my project, i am coding a script (row script with HTML and css ) but i notice table is not showing in opera mini but when test the same codes on other ready made scripts ta table show perfectly on it please coders/web designers help me on this

Hint

[i created a file table.php and input this codes ]

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style>
table
{
width:100%;
text-align:center;}

td
{
background:#F00;
border:#00F solid 2px;}
</style>


</head>

<body>

<table width="85" border="0">
<tr>
<td width="29">q</td>
<td width="22">1</td>
<td width="20">q</td>
</tr>
<tr>
<td>q</td>
<td>q</td>
<td>q</td>
</tr>
<tr>
<td>q</td>
<td>q</td>
<td>q</td>
</tr>
<tr>
<td>q</td>
<td>q</td>
<td>q</td>
</tr>
</table>

</body>
</html>


i works perfect on ucweb an perfect on pc but on opera t seems the border are disabled please any help or can any one give me tested codes?
tanx
Re: Help!!! Html Table Not Working On Moble Operamini by yawatide(f): 1:10pm On Dec 01, 2013
1) Screenshot please
2) If all you are worried about is disabled border, it could be because you have "border=0" in the table tag and each browser display that differently
3) What is your desired effect?
4) If your concern is #2 above, consider taking out the border attribute and doing everything in CSS for consistency

Good luck!
Re: Help!!! Html Table Not Working On Moble Operamini by Lastdon02(m): 8:34pm On Dec 01, 2013
yawa-ti-de:
1) Screenshot please
2) If all you are worried about is disabled border, it could be because you have "border=0" in the table tag and each browser display that differently
3) What is your desired effect?
4) If your concern is #2 above, consider taking out the border attribute and doing everything in CSS for consistency

Good luck!


ok tanks iam relived at least sum1 s here to help me tank alot let me try setting the border
Re: Help!!! Html Table Not Working On Moble Operamini by Lastdon02(m): 8:50pm On Dec 01, 2013
yawa-ti-de:
1) Screenshot please
2) If all you are worried about is disabled border, it could be because you have "border=0" in the table tag and each browser display that differently
3) What is your desired effect?
4) If your concern is #2 above, consider taking out the border attribute and doing everything in CSS for consistency

Good luck!

i Aded Border="1" it still thesame But only on opera single colum view ples help me dis tin have been dlaying my project tanx

Re: Help!!! Html Table Not Working On Moble Operamini by Lastdon02(m): 9:01pm On Dec 01, 2013
Image no showing pls can you help me with your Mobile number? So we can talk beta tanx
Re: Help!!! Html Table Not Working On Moble Operamini by Gerardcole(m): 11:44pm On Dec 01, 2013
You mentioned you had Opera Mini single column view on.

To enable table tags on that view mode, you must indicate a css stylesheet for 'handheld' devices. Which is what Opera Mini uses if the 'SCV' is turned on and its supplied, if not, it falls back to its own optimization techniques.

So create a handheld css stylesheet and llink to it like this.
<link type="text/css" rel="stylesheet" media="handheld" href="link-to-css">

Or you can include it in your already existing css stylesheet by using the

@media handheld { /* You style declarations */ }
Re: Help!!! Html Table Not Working On Moble Operamini by yawatide(f): 1:28am On Dec 02, 2013
In addition to what Gerald has said...and if it doesn't work, if you are still interested in screenshots, I believe your mobile device can capture a screenshot, which you in turn upload to this thread
Re: Help!!! Html Table Not Working On Moble Operamini by Lastdon02(m): 6:15pm On Dec 02, 2013
Re: Help!!! Html Table Not Working On Moble Operamini by Lastdon02(m): 6:19pm On Dec 02, 2013
yawa-ti-de:
In addition to what Gerald has said...and if it doesn't work, if you are still interested in screenshots, I believe your mobile device can capture a screenshot, which you in turn upload to this thread

This d image url Ma
https://fbcdn-photos-e-a.akamaihd.net/hphotos-ak-frc3/1484319_623654197699181_114946779_a.jpg
Re: Help!!! Html Table Not Working On Moble Operamini by Lastdon02(m): 6:21pm On Dec 02, 2013
Gerardcole: You mentioned you had Opera Mini single column view on.

To enable table tags on that view mode, you must indicate a css stylesheet for 'handheld' devices. Which is what Opera Mini uses if the 'SCV' is turned on and its supplied, if not, it falls back to its own optimization techniques.

So create a handheld css stylesheet and llink to it like this.
<link type="text/css" rel="stylesheet" media="handheld" href="link-to-css">

Or you can include it in your already existing css stylesheet by using the

@media handheld { /* You style declarations */ }

tanx oga for following me down her Bt how do i creat d handheld css for the table pls i av neva layed ma hand on @media tinz o pls litl example
Re: Help!!! Html Table Not Working On Moble Operamini by Gerardcole(m): 8:34pm On Dec 02, 2013
Go through and practice every step in the CSS tutorials.
Re: Help!!! Html Table Not Working On Moble Operamini by Lastdon02(m): 1:37pm On Dec 03, 2013
Gerardcole: Go through and practice every step in the CSS tutorials.

boss Iav read and undastand evry bit of it bt still dont no how to put it together
Re: Help!!! Html Table Not Working On Moble Operamini by Gerardcole(m): 3:43pm On Dec 03, 2013
Did you read this at all?

Gerardcole: Go through and practice every step in the CSS tutorials.

Did you see the bold text?
Re: Help!!! Html Table Not Working On Moble Operamini by Lastdon02(m): 5:57pm On Dec 03, 2013
Gerardcole: Did you read this at all?



Did you see the bold text?

i don notice but i read an understand sir pls wat next i dont no how to pt them together pls any live example?
oga geralcole

(1) (Reply)

Is Anyone Hosting On Lagoshost.com / 5 Lessons Every Blogger Can Learn From Linda Ikeji's Plagiarism Saga / Affordable Premium Wordpress Websites

(Go Up)

Sections: politics (1) business autos (1) jobs (1) career education (1) romance computers phones travel sports fashion health
religion celebs tv-movies music-radio literature webmasters programming techmarket

Links: (1) (2) (3) (4) (5) (6) (7) (8) (9) (10)

Nairaland - Copyright © 2005 - 2024 Oluwaseun Osewa. All rights reserved. See How To Advertise. 41
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.