We are currently experiencing payment processing issues. Our team is working to resolve the problem as quickly as possible. Thank you for your patience
Posting issue...kinda
0
Whenever i write a post and want to include an image or a link it always ends up at the bottom of the screen, even though i've put it to appear somewhere else in the post, it get really annoying after awhile.
Also, everytime i make some adjustment, like bold'ing some text or whatever, the window goes up to the top of the post, that is also very annoying.
So, is it supposed to do that or am i the only one getting this stuff?
Also, everytime i make some adjustment, like bold'ing some text or whatever, the window goes up to the top of the post, that is also very annoying.
So, is it supposed to do that or am i the only one getting this stuff?
0
This is an issue I have noticed as well, unfortunately I am not entirely sure how to fix it. So it'll be some time before I figure it out x_x
0
Jacob wrote...
This is an issue I have noticed as well, unfortunately I am not entirely sure how to fix it. So it'll be some time before I figure it out x_xAs long as you know the problem is there and needs to be fix'd that's enough for me, for now atleast :P
0
This has happened to me recently as well. Most recently my Blood Shadow thread in the User upload section. It's not the biggest issue in the world just a little inconvenient.
0
If you're talking about clicking that URL making thing and having the URL pop in at the bottom when your cursor is halfway through the text [which annoyed me, because I'd forgotten the BBCode for it, this is the Javascript function.
[code:1]function BBCurl() {
var FoundErrors = '';
var enterURL = prompt("Enter the URL", "http://");
var enterTITLE = prompt("Enter the page name", "Web Page Name");
if (!enterURL) {
FoundErrors += " You didn't write the URL.";
}
if (!enterTITLE) {
FoundErrors += " You didn't write the page name.";
}
if (FoundErrors) {
alert("Error:"+FoundErrors);
return;
}
var ToAdd = "[url="+enterURL+"]"+enterTITLE+"[/url]";
PostWrite(ToAdd);
}[/code:1]
It's really not supposed to be complex.
[code:1]function BBCurl() {
var FoundErrors = '';
var enterURL = prompt("Enter the URL", "http://");
var enterTITLE = prompt("Enter the page name", "Web Page Name");
if (!enterURL) {
FoundErrors += " You didn't write the URL.";
}
if (!enterTITLE) {
FoundErrors += " You didn't write the page name.";
}
if (FoundErrors) {
alert("Error:"+FoundErrors);
return;
}
var ToAdd = "[url="+enterURL+"]"+enterTITLE+"[/url]";
PostWrite(ToAdd);
}[/code:1]
It's really not supposed to be complex.