Forum Replies Created
-
In reply to: can’t log in anymore
Oops then the username got deleted from database!
Is it true that both jen and admin don’t work either in wp or bbpress?
If yes then you may have to add that to database via some SQL query or register again. But if you register again it will be registered as normal user and you won’t have admin rights, since there is no admin present so who will assign this new user, the admin powers.
Register as some username xyz and look in the userlist the entries that exist wheather or not admin/jen is listed.
In reply to: can’t log in anymoretry forgot password option, see if database responds to the query i.e username and password entries are there. then password will be mailed to your ID.
In reply to: links longer than page width!I don’t want my text that i enter between
Code:to be trated as hyperlink even if it is. What @bobbyh say will only change the formatting but not remove hyperlink.
In reply to: links longer than page width!Got it somewhat.
Edit style.css file in themes and enter
1)To align text both sides
.post {text-align: justify;}
2)To prevent overflow
.post code {
overflow: auto;
display: block;
height: auto;
max-height: 200px;
white-space: normal;
padding-top: 5px;
padding-bottom: 5px;
font: 0.9em Monaco, "Andale Mono","Courier New", Courier, mono;
line-height: 1.3em;
background: #ffffff;
margin: 2px 0;
}Sill one more thing – how to remove hyperlink in the text entered. That is why
<a href="
etc gets added to text I enter between code tag.In reply to: links longer than page width!This is not what I meant, haven’t you seen phpbb3 that sort of thing, scrollbar only under
Code:and hyper links are not active in that box.
please people suggest.
In reply to: links longer than page width!Thanks man but it changes whole post and a scroll appears, but in RSS feeds it doesnot.
I require scroll only to appear where I have entered text in between backtricks and not in the whole post.
Besides overflow firefox displays the links in one line but IE7 breaks it into more than one line, why is that?