Jump to content

QuickOldCar

Staff Alumni
  • Posts

    2,972
  • Joined

  • Last visited

  • Days Won

    28

QuickOldCar last won the day on July 11 2016

QuickOldCar had the most liked content!

About QuickOldCar

  • Birthday 06/23/1971

Contact Methods

  • AIM
    quickoldcar
  • Website URL
    http://dynainternet.com

Profile Information

  • Gender
    Male
  • Location
    NorthEast Pennsylvania

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

QuickOldCar's Achievements

Regular Member

Regular Member (3/5)

119

Reputation

14

Community Answers

  1. In your style.css are these rules #sitename { font-size: 60px; color: #7272DE; padding: 20px; text-align: center;} #banner { margin-left: 210px; background: #000; text-align: right;} Yet when viewing the header.tpl file I do not see these rules applied <!-- START BLOCK : header --> <body> <div id="{page_id}"> <div id="leftcontainer"> <div id="maincontainer"> <div id="leftcolumn"> <div class="leftblock"> <div class="lefttitle"><div class="lefttitle2">{menu2_title}</div></div> <div class="blockbox">{menu2_content}</div> </div> <div class="leftblock"> <div class="lefttitle"><div class="lefttitle2">{random_title}</div></div> <div class="content">{random_content}</div> </div> {login_title}{login_content} </div> <div id="banner"></div> <div id="skincontainer"><div id="skincontainerB"><div id="skincontainerC">{menu_content}{skinchange_content}{rss}</div></div></div> </div> <div id="mainpage"> <!-- END BLOCK : header -->
  2. Need to show the code that actually does the pagination.
  3. css .centeredImage { text-align:center; margin-top:0px; margin-bottom:0px; margin-right: auto; margin-left: auto; padding:0px; } html <p class="centeredImage"><a href="http://site.com"><img src="http://site.com/images/default.png" alt="Logo" style="max-width:98%;max-height:90px;"/></a> </p>
  4. You don't need to add a href link, place a hidden field in the form. <input type="hidden" name="click" value="yes">
  5. header() must be used before any output is displayed. I don't see anywhere in your header.php code you posted that SYSTEM_HELPER.PHP is included or your redirect function is being called upon.
  6. Maybe should be looking at the developers site and also wordpress related. If this was made as a plugin everything should be included to work, possibly they require a special custom theme to work right. To try and make this simple, adding functions to theme itself or use as a plugin that injects into themes.
  7. Pretty much you have to query the counts sorted in the order you desire. Then fetch the post_id's information for each so is something of value to show and possibly click on as well.
  8. Is my understanding you want the totals for votes somewhere like the sidebar and to refresh every so often. Is no need to modify the current script have, that either adds a vote or not upon casting a vote via POST. You need to write a script to query and fetch all the results, can use a header or meta refresh and include or iframe the script in a sidebar text widget. I would think refreshing it more often be needed as well. Must be before any output at the beginning of the script. header( "refresh:30;url=script_name.php" ); Meta does not need to be at the beginning. <meta http-equiv="refresh" content="30;URL='http://site.com/script_name.php'" />
  9. Are you aware you just need to have the video id and and use it in place of video_id any one of the following urls for the image? http://img.youtube.com/vi/video_id/0.jpg http://img.youtube.com/vi/video_id/1.jpg http://img.youtube.com/vi/video_id/2.jpg http://img.youtube.com/vi/video_id/3.jpg
  10. If you need to stay on the page and reload only that look into jquery or ajax codes pertaining to it, otherwise can use a form with POST or GET so it loads your specific image size requested. That will reload entire page with the set image size. You can use css to change the image being displayed or even gd or imagmagic and store these images for future use. Is quite a few image resize scripts around. Then can cache the images.
  11. I'm pretty sure is an ads related script from media.net. They have an error their script where is supposed to be parsed and not downloaded.
  12. Wordpress can be installed in root, subdomain or directory. Can follow the instructions here. https://codex.wordpress.org/Installing_WordPress
  13. You also want to never use a negative value so if less than 1 make it one again. if($page < 1){ $page = 1; }
×
×
  • 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.