Jump to content

graecyn

Members
  • Posts

    9
  • Joined

  • Last visited

    Never

About graecyn

  • Birthday 04/10/1983

Profile Information

  • Gender
    Female
  • Location
    Washington, DC

Contact Methods

  • Yahoo
    graecynolivia

graecyn's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Nevermind, he got to it before me. ^^ :P
  2. [!--quoteo(post=361219:date=Apr 3 2006, 10:20 AM:name=graecyn)--][div class=\'quotetop\']QUOTE(graecyn @ Apr 3 2006, 10:20 AM) [snapback]361219[/snapback][/div][div class=\'quotemain\'][!--quotec--] Well I did the float: right thing, but the padding-left and margin-right properties didn't work. The menu is still at the bottom of the page. :( [/quote] Alrighty, after hours of mindless toiling, it finally works. Thanks for the input. :)
  3. [!--quoteo(post=361190:date=Apr 3 2006, 09:15 AM:name=moberemk)--][div class=\'quotetop\']QUOTE(moberemk @ Apr 3 2006, 09:15 AM) [snapback]361190[/snapback][/div][div class=\'quotemain\'][!--quotec--] Try changing your stylesheet from absolutes to floats, like this: [code] #rightmenu {     float: right;     width: 180px;     top: 200px; }[/code] After that, your menu will go down to the bottom of the page. To fix that, add a margin-right property to your blog content, or a padding-left property to your blog wrapper. [/quote] Well I did the float: right thing, but the padding-left and margin-right properties didn't work. The menu is still at the bottom of the page. :(
  4. Here is the site: [a href=\"http://www.graecyn.com\" target=\"_blank\"]http://www.graecyn.com[/a] I can't get the damn menu bar to be on the right (next to the blog) in different resolutions. And I can't fix it. And I'm losing my minddddddddddd. The menu itself is 2 divs - 1 main one (rightmenu) and 1 that formats the links (menuwrap). Here is the CSS and HTML for the menu bar: [code]<div id="rightmenu">     <!-- ADMIN LOGIN -->     <div class="menuwrap">       <ul>         <li style="background: transparent; border: 0px;"> <img src="images/admintop.gif"></li>         <?php     echo 'Not logged in. <a href="login.php">LOGIN</a>';     ?>       </ul>     </div>     <!-- END ADMIN LOGIN -->     <p>       <!-- MAIN MENU -->     <div class="menuwrap">       <ul>         <li style="background: transparent; border: 0px;"><img src="images/menutop.gif"></li>         <li><a href="index.php">Home</a></li>         <li><a href="about.php">About Me</a></li>         <li><a href="http://www.graearea.com" target="new">Web Design</a></li>         <li><a href="http://www.shitforbreakfast.com" target="new">Shit for Breakfast</a></li>         <li><a href="http://www.berserk4life.com" target="new">Berserk4life</a></li>         <li><a href="http://www.illwillpress.com" target="new">Ill Will Press</a></li>         <li><a href="http://www.thinkgeek.com" target="new">Thinkgeek.COM</a></li>         <li><a href="#">Email Me</a></li>       </ul>     </div>     <!-- END MAIN MENU -->[/code] [code]#rightmenu {     position: absolute;     left: 780px;     width: 180px;     top: 200px; } .menuwrap {     position: relative;     width: 180px;     left: 160px;     top: 0px;     padding: 0px 0px 0px 15px;         }[/code] I've tried changing both to relative positions and everything and it just will not work. Help help help.
  5. Oh, I see. You're linking to the images in the parent directory from the child directory. Try changing your image tags to something like this: [code]<img src='../images/__08.jpg'>[/code] Note the two dots in front of the directory.
  6. Try CHMODing your images folder to 755.
  7. graecyn

    nl2br

    Nevermind!!! Covered already. :P
  8. Beautiful! Thanks a ton. :) Works beautifully.
  9. Hi everyone. It's me again. Here's my dilemma: I need a time interval counter. For instance, let's say I have a simple text counter starting at 0. Every 15 minutes, I want to add say 25 to that number. So at 15 minutes, the counter will go from 0 to 25, at 30 the counter will go from 25 to 50, and so on. I imagine what I will need to do is: Find the current time Determine what time the last update was made Based on the current time, and the time the last update was made, calculate how many increments of 25 to add to the counter Update the counter to display the calculated number. Now, I have no idea where to look or even how to begin doing this... Any help would be appreciated!
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.