|
I neglected to ask poster but I don't think HTML5/CSS3 is being used. I find div's way more effective than table architecture. At least once I had the ah-ha moment.
vbmike
|
|
|
|
|
They say that tables are "old hat". But I say, they still to this day serve a purpose. And CodeProject, the website you are using right now, is an example of their continued use.
But yes, you are right, div's are effective and most suitable for manipulation
From the OP's original posting, it appears he was targetting older browsers using -moz- or -ms- and so on
modified 1-Aug-19 21:02pm.
|
|
|
|
|
This dose not work. normal do not break words. look at my later answer to this question.
|
|
|
|
|
I have the same problem. 
|
|
|
|
|
I did it on the server-side instead. Not a good solution but a workaround
|
|
|
|
|
Sorry to add a comment after so long but I found this little bit on a css site and it works pretty well with your situation I would think....at least in my testing on my system. May have something to do with the hyphens settings being added...
-ms-word-break: break-all;
word-break: break-all;
word-break: break-word;
-webkit-hyphens: auto;
-moz-hyphens: auto;
hyphens: auto;
vbmike
|
|
|
|
|
This dose not work for tables in all browser see previous discussion
|
|
|
|
|
Ok, good luck. I don't use tables for much anymore.
vbmike
|
|
|
|
|
Hello everyone,
i'm facing this issue in crystal report my web site is deployed on server and i'm accessing it on another system
Crystal Reports ActiveX Designer error '80043ae3'
Invalid TLV record.
please provide me necessary component for this issue.
Thanks
|
|
|
|
|
In my country, we use our own social networks, the best one of them is Zing Me, this social network allows me to log in with a Facebook account, a Yahoo account, a Twitter account, a Google+ account. I wonder how this can be done?
Could you please explain to me the mechanism or give me some helpful link for this?
Your help would be highly appreciated!
Thanks!
PS: In fact, it guides me through some steps for creating new account based on the personal information which is fetched from the outside network (E.g: Facebook). And this is the secret thing I want to know, how can it fetch information of a user from an outside network?
modified 23-Nov-12 7:50am.
|
|
|
|
|
|
Thank you, what about others (beside Google)? They must also have their own APIs?
|
|
|
|
|
Why not Google it? Go and read up about their APIs. They are well documented and in the public domain.
|
|
|
|
|
It's a OAuth - open standard for authorization, for details en.wikipedia.org/wiki/OAuth
|
|
|
|
|
Hi there. I working few years on programing desktop applications through vb.net.Now,I have exigency to start with learning of web development,so I need to know which language is:
1.easiest to learning
2.represented in most popular sites in the world
3.useful
I need some reasoned response from you.
Thanks in advance.
|
|
|
|
|
You can use VB.NET in website development; take a look at ASP.NET[^].
One of these days I'm going to think of a really clever signature.
|
|
|
|
|
I think, it's PHP. very easy to learn and implimentation.
|
|
|
|
|
I think a social network differs from a normal web site in its functionalities, not in the techniques used to build it, right? It is just a database-oriented web application like others. Or is there anything else I don't know about social network? Could you please let me know if there is anything else I don't mention here?
I intend to build a social network for my own (just for fun) but don't know where to start, I think I should draft all the functionalities or at least the most essential ones a social network should have first and then build each one. Could you list all the functionalities a web application should have to be called a social network? (this is important to me before I can start my work).
I also want some source code to refer to as a sample. If possible, could you please give me some link to download the source code (written in PHP please) for a social network?
Your help would be highly appreciated!
Thanks!
|
|
|
|
|
A quick Google search gets you these links[^].
One of these days I'm going to think of a really clever signature.
|
|
|
|
|
That's not what I want, Don't you think developing and maintaining a social network is much more costly than a normal web site? Or do you mean social network is just a normal web site (or a collection of web sites)?
|
|
|
|
|
You asked for PHP samples and I showed you where to find some. It's unlikely that you are going to produce a very basic website, let alone a social network, unless you understand the technology required to build it.
supernorb wrote: Or do you mean social network is just a normal web site (or a collection of web sites)? How could I know? You are the one designing this project and we have no details on what you are planning to create.
One of these days I'm going to think of a really clever signature.
|
|
|
|
|
In social networks sites, end-users can interactions among them, but in normal website is very objective in providing information to end-users, but among them there is no interactions.
|
|
|
|
|
Hi
i have an issue with the twitter bootstrap popover.
I am using Asp.net visual studio 2005.
I have downloaded and installed the most recent package (twitter-bootstrap-v2.2.0-2-g3b3dd3a)
I made a simple html page:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Twitter Bootstrap Popover with placement option Example</title>
<meta name="description" content="Creating Modal Window with Twitter Bootstrap">
<link href="twitter-bootstrap/docs/assets/css/bootstrap.css" rel="stylesheet">
<style>
a {
margin-left : 400px;
}
</style>
</head>
<body>
<div class="container">
<h2>Example of creating Popover with Twitter Bootstrap with placement option</h2>
<div class="well">
<a href="#" id="example" class="btn btn-success" rel="popover" data-content="It's so simple to create a tooltip for my website!" data-original-title="Twitter Bootstrap Popover">hover for popover</a>
</div>
<div class="well">
<a href="#" id="example_left" class="btn btn-success" rel="popover" data-content="It's so simple to create a tooltop for my website!" data-original-title="Twitter Bootstrap Popover">hover for popover</a>
</div>
<div class="well">
<a href="#" id="example_top" class="btn btn-success" rel="popover" data-content="It's so simple to create a tooltop for my website!" data-original-title="Twitter Bootstrap Popover">hover for popover</a>
</div>
<div class="well">
<a href="#" id="example_bottom" class="btn btn-success" rel="popover" data-content="It's so simple to create a tooltop for my website!" data-original-title="Twitter Bootstrap Popover">hover for popover</a>
</div>
</div>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript" src="twitter-bootstrap/js/bootstrap-tooltip.js"></script>
<script type="text/javascript" src="twitter-bootstrap/js/bootstrap-popover.js"></script>
<script type="text/javascript">
$(function ()
{ $("#example").popover();
$("#example_left").popover({placement:'left'});
$("#example_top").popover({placement:'top'});
$("#example_bottom").popover({placement:'bottom'});
});
</script>
</body>
</html>
The problem is that, using IE 9, the buttons aren't formatted properly, while in Chrome they appear just fine
Here how they are displayed in IE9:
IE9
Here in Chrome:
Chrome
Any suggestions or help would be way cool!
Thanks,
Mary
|
|
|
|
|
Hello Mary,
Looking at the pictures, to me it just looks like the buttons in chrome are center aligned and the buttons in ie are left aligned.
What is the styling in your style "Well"?
And did you try
<div style="text-align: center;">
instead of
<div class="well">
|
|
|
|
|
Hello,
Can anybody give me any example of webservice use in desktop application.?
Thank you
|
|
|
|