ilostmydream
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Alt Text Colorohh never mind i can use it for everything yay!
happy me 😉
thank you!
Forum: Themes and Templates
In reply to: Alt Text Colorohhh score thats what i want 🙂 thank you!
there is still no way to define it in css though is there?
Forum: Themes and Templates
In reply to: Alt Text Colorhttp://missm.nytka.org is the main page and
http://missm.nytka.org/blog is the blog.see the little 80×15 button things on the bottom of the main page and in the sidebar of the blog? those are what i want fixed hah 🙂
Forum: Themes and Templates
In reply to: Alt Text Colori think i just invented that i could change the tooltip o.O i thought i saw it somewhere?
Forum: Themes and Templates
In reply to: Alt Text Coloroh and im talking about the tooltip popup thing in case you didn’t understand me 😉
Forum: Themes and Templates
In reply to: Alt Text Colorok now on the front page i have two little buttons at the bottom. when I hover over them it says something about hosting or what not and I want the text to be #6666cc and the background color to be black. I also want to do the same thing to the images in my posts. I’m a freak for customization 😉
this is what the style sheet says in the html of the page… all the rest of the css is working just not this:
<link href="../../style.css" rel="stylesheet" type="text/css">P.S. thank you 🙂
Forum: Themes and Templates
In reply to: Alt Text Coloryeah i tried that no luck :\
Forum: Plugins
In reply to: Pagenavi Questionk thanks 😉
Forum: Fixing WordPress
In reply to: Numbering Comments Pages…nope didnt work 🙁
Forum: Themes and Templates
In reply to: Delete white borderwelcome 🙂 i totally agree!
Forum: Themes and Templates
In reply to: Delete white borderoh and make sure that your shoutbox iframe is smaller than the size you’ve allocated for the sidebar. That’s another thing that can spark the computer’s circuits.
Forum: Themes and Templates
In reply to: Delete white borderyou have to close the li tag and the iframe tag. Computers are stupid and only do what you tell them to do. I’ve noticed especially while using word press (php) that the smallest code problems that are normally OK in simple HTML will completely mess up your layout in PHP/CSS. Hard concept for little miss graphic design to get used to as I’m usually to busy annoying myself over 1pixle grapic differences and never take the time to worry about the code… I just let dreamweaver do all that for me 🙂 Anyway here is exacly how you should put it it:
<li id="menu"><h2>Shoutbox</h2><br>
<iframe id="shoutbox" src="http://log.lenntheman.com/shoutbox/index.php" width=180 height=300 marginwidth=0 marginheight=1 hspace=1 vspace=1 frameborder=0 scrolling=auto style="border: 1px dashed #92E12D"> </iframe></li>Let me know if you have any other design prolems… I don’t know jack about code but anything related to this stuff I can do with my eyes closed 🙂
Forum: Fixing WordPress
In reply to: Open a Pop upIt’s just javascript that you add to your post’s in HTML. Here is an example:
<a href="#" /><br />
'toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0,width=480,height=640');"><img src="imagethumb1.jpg"></a>~replace image.htm with the the link of your image page or jpg.
~If you want scrollbars etc change the value 0 to a 1.
~under imagetitle change it to the name of your popup so if you have a bunch they don’t get confused.
~ change imagethumb1.jpg to the name of your small image.I would also suggest not just linking to an image in the popup because you’ll have annoying margins… but putting the image into an HTML page. Just make sure you add this to your body tag in the image’s html page:
<BODY leftMargin=0 topMargin=0>Also just another interesting thing is if you want to close your popup window use this code:
<a href="#" onClick="window.close('01.htm');"> close me!</a>
🙂Forum: Fixing WordPress
In reply to: post.php error (line 497)you have to enable sending referers… check this:
http://codex.wordpress.org/Enable_Sending_Referrers
I think anyway 😉 I know in my Zone Alarm I had to allow the headers as well for my blogs web address. Can’t remember if it talks about that in the faq.
Forum: Themes and Templates
In reply to: Delete white borderYou put it in the right place but the iframe settings look muckey to me…
<iframe id=”shoutbox” src=”shoutbox/index.php” width=300 height=300 marginwidth=0 marginheight=1 hspace=1 vspace=1 frameborder=0 scrolling=auto>
The height and width are in pixles so change it to whatever you want.
if you dont want the horizontal scroll bar in the iframe you have to edit the css in the html (or php) page… in your case its the index.php for the shoutbox. Add this to the css in the shoutbox php file:
<head>
<style type=”text/css”>
body
{
overflow-x:hidden;
}
</style>
</head>That should work dandy 🙂 Just edit the margins etc to what you want.