i want to center some telerik:RadLiveTile elements on my Page, but i dont know how. I've tried many ways found with google but nothing works for me.
Attached, you can find my imagination of the page.
PAGE
One tile looks like this:
<telerik:RadLiveTile
ID="thridTile"
runat="server"
Width="600"
Height="300"
UpdateInterval="5000"
OnClientDataLoadingError="liveTileOnClientDataLoadingError"
OnClientTemplateDataBound="liveTileOnClientTemplateDataBound"
Shape="Wide">
<WebServiceSettings Path="WebService.asmx" />
<ClientTemplateAnimationSettings Animation="None" />
<ClientTemplate>
#=data#
</ClientTemplate>
</telerik:RadLiveTile>
Greetings, Marvin
Related
I have image with phone number on it:
I want to let other people find the page where this image is, by searching "1-700-700-690" on Google. Just as if the HTML tag would be:
<div> 1-700-700-690 </div>
I tried:
<img alt="1-700-700-690" src="http://hashef.co.il/wp-content/uploads/2013/12/Moked-Telephoni2.png" width="295" height="62" />
But it doesn't work (tried find the page on Google).
Is there anyway to do this?
One of these two workarounds might work for you:
1) Place <p>1-700-700-690</p> directly before or after your image and set font-size to 1px and change the font color to the background color.
2) Use <meta> tags in your head that include the phone number. This should help with the indexing of your page. Documentation can be found directly on Google, e.g. see this link here.
I'm trying to embed an image from gfycat into my HTML but I'm having trouble.
I've tried adding this to my HTML but the image won't show up.
<img class="gfyitem" data-id="BlushingWeepyDartfrog" />
How do I embed an image from gfycat into my HTML?
Thanks in advance.
How's about <img class="gfyitem" data-id="$1" />
Here is link http://www.simplemachines.org/community/index.php?topic=519533.0
I don't know exactly what u mean. but I think that link will be helped.
http://www.gfycat.com/about
Good day,
I am doing on Java with Struts2 framework. The below is my html code :
<html:image alt="Calendar" src="/images/icon_calendar.gif" />
<img alt="Calendar" src="/images/icon_calendar.gif" />
The first line of my image is working fine, the image is show correctly in my web page. ()
However, the second line of my html is not working. It is showing broken image in my web page. ()
Would like to ask, what mistake in my code.
Kindly advise.
Good day,
The problem is solved once I have post this question.
I have tried to solved it for few days.
The correct code should be as follow:
<html:image alt="Calendar" src="/images/icon_calendar.gif" />
<img alt="Calendar" src="images/icon_calendar.gif" />
I'm trying to set up Google Sites for my own personal website:
<html>
<head>
<title>...</title>
</head>
<body background="page_bg.png" text="#000000" bgcolor="#333333">
<div align="center"><img src="content.jpg" border="0" alt=""></div>
</body>
</html>
So all I want is a background picture (I accomplished to do this under settings) and only one picture in the middle of the site itself. I was trying to get rid of all the gimmicks (such as the sidebar, shadows of the frame, etc.) but I failed. Is it even possible to do this?
The reason I use Sites is, because the web address "https://sites.google.com/site/my_name_here/" is clear, it's free and it makes my site appear in the google search.
edit, my solution: I found a template called "Blank Template (Black)" which didn't contain anything (no sidebar, etc). I added my own background picture, inserted my content.jpg and done.
I guess you have to use something like:
<body style="background:#333333 url('page_bg.png'); color=#000000;">
<div style="text-align:center;"><img src="content.jpg" border="0" alt=""></div>
</body>
Oh ok, right! I think you cannot add your own styles using html/css. But if you go to "Managing Web site" there is a "Colors and fonts" option, and there you make you own customization for some elements, like select a different background color.
Is that what you're looking for Thomas?
My solution: I found a template called "Blank Template (Black)" which didn't contain anything (no sidebar, etc). I added my own background picture, inserted my content.jpg and done.
I have my image placed in a folder called images in the netbeans web pages folder and the link to it in my jsp is in a div as shown below:
<div id="image">
<p>
<img src="${pageContext.request.contextPath}/images/vote_image.GIF"
alt="banner"
width=600px
height=300px
/>
</p>
</div><!--end of image div-->
The problem is the image just doesn't load in the browser. What could be the problem? I used the same code in linux and it used to load the image. Could it be a browser problem, I'm using firefox 3.6 which I don't think should have a problem. Please let me know if any one has a clue as to why this is happening. If the problem is my code let me know how to adjust. Thank you
There are no units used in HTML width and height attributes.
<img src="${pageContext.request.contextPath}/images/vote_image.GIF"
alt="banner"
width="600"
height="300"
/>
Without seeing the rendered source of the page, I'd guess that's your problem. If not, try inspecting your image in Firebug and post what its rendered source looks like.
Also, make sure case sensitivity is not in play: gif vs. GIF.