The following warnings occurred:
Warning [2] Undefined array key "lockoutexpiry" - Line: 94 - File: C:\sites\kwikcontent\supportforum\global.php PHP 8.1.27 (WINNT)
File Line Function
C:\sites\kwikcontent\supportforum\global.php 94 errorHandler->error
C:\sites\kwikcontent\supportforum\printthread.php 16 require_once
Warning [2] Undefined array key "lockoutexpiry" - Line: 573 - File: C:\sites\kwikcontent\supportforum\global.php PHP 8.1.27 (WINNT)
File Line Function
C:\sites\kwikcontent\supportforum\global.php 573 errorHandler->error
C:\sites\kwikcontent\supportforum\printthread.php 16 require_once
Warning [2] Undefined variable $can_access_moderationqueue - Line: 752 - File: C:\sites\kwikcontent\supportforum\global.php PHP 8.1.27 (WINNT)
File Line Function
C:\sites\kwikcontent\supportforum\global.php 752 errorHandler->error
C:\sites\kwikcontent\supportforum\printthread.php 16 require_once
Warning [2] Undefined array key "avatartype" - Line: 892 - File: C:\sites\kwikcontent\supportforum\global.php PHP 8.1.27 (WINNT)
File Line Function
C:\sites\kwikcontent\supportforum\global.php 892 errorHandler->error
C:\sites\kwikcontent\supportforum\printthread.php 16 require_once
Warning [2] Undefined array key "avatartype" - Line: 892 - File: C:\sites\kwikcontent\supportforum\global.php PHP 8.1.27 (WINNT)
File Line Function
C:\sites\kwikcontent\supportforum\global.php 892 errorHandler->error
C:\sites\kwikcontent\supportforum\printthread.php 16 require_once
Warning [2] Undefined variable $unreadreports - Line: 25 - File: C:\sites\kwikcontent\supportforum\global.php(959) : eval()'d code PHP 8.1.27 (WINNT)
File Line Function
C:\sites\kwikcontent\supportforum\global.php(959) : eval()'d code 25 errorHandler->error
C:\sites\kwikcontent\supportforum\global.php 959 eval
C:\sites\kwikcontent\supportforum\printthread.php 16 require_once
Warning [2] Undefined array key "style" - Line: 1024 - File: C:\sites\kwikcontent\supportforum\global.php PHP 8.1.27 (WINNT)
File Line Function
C:\sites\kwikcontent\supportforum\global.php 1024 errorHandler->error
C:\sites\kwikcontent\supportforum\printthread.php 16 require_once
Warning [2] Undefined property: MyLanguage::$lang_select_default - Line: 5308 - File: C:\sites\kwikcontent\supportforum\inc\functions.php PHP 8.1.27 (WINNT)
File Line Function
C:\sites\kwikcontent\supportforum\inc\functions.php 5308 errorHandler->error
C:\sites\kwikcontent\supportforum\global.php 1024 build_theme_select
C:\sites\kwikcontent\supportforum\printthread.php 16 require_once
Warning [2] Undefined array key "showimages" - Line: 160 - File: C:\sites\kwikcontent\supportforum\printthread.php PHP 8.1.27 (WINNT)
File Line Function
C:\sites\kwikcontent\supportforum\printthread.php 160 errorHandler->error
Warning [2] Undefined array key "showvideos" - Line: 165 - File: C:\sites\kwikcontent\supportforum\printthread.php PHP 8.1.27 (WINNT)
File Line Function
C:\sites\kwikcontent\supportforum\printthread.php 165 errorHandler->error
Warning [2] Undefined array key "showimages" - Line: 160 - File: C:\sites\kwikcontent\supportforum\printthread.php PHP 8.1.27 (WINNT)
File Line Function
C:\sites\kwikcontent\supportforum\printthread.php 160 errorHandler->error
Warning [2] Undefined array key "showvideos" - Line: 165 - File: C:\sites\kwikcontent\supportforum\printthread.php PHP 8.1.27 (WINNT)
File Line Function
C:\sites\kwikcontent\supportforum\printthread.php 165 errorHandler->error
Warning [2] Undefined array key "showimages" - Line: 160 - File: C:\sites\kwikcontent\supportforum\printthread.php PHP 8.1.27 (WINNT)
File Line Function
C:\sites\kwikcontent\supportforum\printthread.php 160 errorHandler->error
Warning [2] Undefined array key "showvideos" - Line: 165 - File: C:\sites\kwikcontent\supportforum\printthread.php PHP 8.1.27 (WINNT)
File Line Function
C:\sites\kwikcontent\supportforum\printthread.php 165 errorHandler->error
Warning [2] Undefined array key "showimages" - Line: 160 - File: C:\sites\kwikcontent\supportforum\printthread.php PHP 8.1.27 (WINNT)
File Line Function
C:\sites\kwikcontent\supportforum\printthread.php 160 errorHandler->error
Warning [2] Undefined array key "showvideos" - Line: 165 - File: C:\sites\kwikcontent\supportforum\printthread.php PHP 8.1.27 (WINNT)
File Line Function
C:\sites\kwikcontent\supportforum\printthread.php 165 errorHandler->error



Kwikcontent Support Forum
Background - Printable Version

+- Kwikcontent Support Forum (http://kwikcontent.com/supportforum)
+-- Forum: Kwikcontent (http://kwikcontent.com/supportforum/forumdisplay.php?fid=3)
+--- Forum: Themes Support (http://kwikcontent.com/supportforum/forumdisplay.php?fid=7)
+--- Thread: Background (/showthread.php?tid=79)



Background - Thomas27 - 02-02-2009

I'm attempting to change around some elements of the site and can't seem to find the line in the style sheet for the background color of the site. I'd like to change it from the basic white. Also, how would I go about having a link in the left menu that links to an outside page?

Thank you, love the software.

Tom


RE: Background - Kwikcontent - 02-03-2009

Hi Tom,

To change the background color, make these changes in /templates/yahoo_grids_1/_style.css:

before:

Code:
body {
    margin: 0px;
}

after:

Code:
body {
    margin: 0px;
    background-color: #eeeeee;  /* change the background color here */
}

before:

Code:
.page_body {
    
}

after:

Code:
.page_body {
    background-color: #ffffff; /* this has to be set to white to preserve readability and design */
}

In /templates/yahoo_grids_1/_footer.htm, you can add menu items right below these lines (or above these lines, depending on where you want them to go):

Code:
                    {if $domain.google_search}
                    <li><a href="{$BASE_FOLDER}search_google.php">Search</a></li>
                    {/if}

like this:

Code:
<li><a href="http://destinationofyourlink.com">Text</a></li>

If you have version 1.0.3 and above, you also need to edit /templates/yahoo_grids_1/_footer-index.htm, which is basically the same as _footer.htm but contains a distinct sidebar and footer specifically for the front page.


RE: Background - Thomas27 - 02-04-2009

Thank you, both working perfectly. I have another question regarding the keywords. I have a site about the sport of cricket and I get results including the insect cricket. I know I can delete the sublevel keywords but they still show up in the answers on the home page and still affect the google adsense. Is there anyway of filtering out certain words when doing keywords? Also are the keywords I define and the subsequent sublevel ones the only ones that show in the keywords for my site or is there a place I can add/subtract keywords in the script?

Thank you,
Tom


RE: Background - Kwikcontent - 02-09-2009

If unwanted answers still show up on the homepage, you can delete them with the Deletes function ( www.yourdomain .com/admin/deletes.php ). First, hover over the answer's hyperlinked title and make note of the number in the URL (it's after "view", e.g. yourdomain .com/view/22/long-title.html). Then enter that number in the "Y! Answer ID" field on the Deletes page and click the "Delete" button.

Right now it's not possible to filter out keywords but we'll try to offer that feature in the next version of Kwikcontent.

The only place to add and remove keywords is on the Keywords page ( www.yourdomain .com/admin/keywords.php ). If you have the latest version of Kwikcontent with Amazon and eBay integration, you can enter one keyphrase for each on the Settings page ( www.yourdomain .com/admin/settings.php )