Change title in header [closed] - html

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
hey guys i have some problems.
I boughta finished template from ego studios . The problem that i have is that i cant change the title. At the title secetion in the head should be Guido Neuhaus, and it is written there but it wont change, there is alway ego stuidos.
could someone take a look at it. Is there any script which blocks it or something like that ?
<head><title>Guido Neuhaus</title></head>
i dont know what to do.
my website

it's in your javascript file: http://guido-neuhaus.de/js/onepage.js
document.title = 'Ego Studios' + ( targetSection.replace( /[_\-\#\!\.\/]/g, ' ' ));

Related

How quora put that image on their home page? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I'm really a noob with HTML and CSS skills so I'd like to do this very simple question
I Saw on the Quora Site a very nice image (I'm not sure if that is a simply image or it's another attachment technic) and I'd like to build a similar in my page like the Quora did.
Someone can explain to me How to do it?
It’s not clear which image you mean.
On the home page, there is a background image (stars), which gets inserted via CSS (background property), and an image (earth), which gets inserted via HTML (img element).

Floating Div that will not effect the page behind [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
i am attempting to make a div that will become a login area, so when you click on login on the navbar the div appears and you type in the details, and it goes away i haven't got code yet as i don't know where to start please help.
I guess that's what you are looking for
http://getbootstrap.com/2.3.2/javascript.html#modals

MySQL - Update images name in database from .jpg to .png [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I need help in updating my database,
I have a column named 'questionLink' in table 'question'
which contains names of the images, (image1.jpg, image2.jpg, image3.jpg)
there are 100s of images, and i have to remane with .png extension...
I firstly trying to show the records with this query, which is no way near to the solution.
SELECT * FROM question WHERE "questionLink" LIKE '%.jpg%'
Any help will be appriciated.
Thanks
Are you looking for something like this?
UPDATE question
SET questionLink = REPLACE(questionLink, '.jpg', '.png');
Here is SQLFiddle demo
Further reading REPLACE()

add closing / with <img> , using regex [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
<img src="images/btn_studyroom.gif" border="0">
I'm asp programmer. I need to change all sites for web accessibility .
I want change <img> tag
example
<img~~~> to <img~~~/>
How to add /> using regex?
At first, the slash before the > is not "more accessible" but xhtml strict compliant.
I'm not an asp expert, but you can try this kind of thing:
String newText = Regex.Replace(inputString, #"(<img[^>]+)(?<!/)(?=>)", "\1/");

Is HTML allowed in objects description? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 8 years ago.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
This question does not appear to be about programming within the scope defined in the help center.
Improve this question
Is it possible to use HTML tags in objects description, like links? I am trying to post a link on the wall with my app but it skips HTML stuff.
With regard to your question - no. You can't use HTML tags at all when posting data to Facebook.