Reckons Team Google Custom Search [Deleted]

Hey im using Xenforo 1.3 nd have just installed your add on, it is somehow interfering with my website sellfree.co.nz the content at the bottem has changed descriptions have gone background color has gone block headings are still there, any ideas? please see my website sellfree.co.nz problem starts in About sellfree block down bottom, thnks.
 
Hey im using Xenforo 1.3 nd have just installed your add on, it is somehow interfering with my website sellfree.co.nz the content at the bottem has changed descriptions have gone background color has gone block headings are still there, any ideas? please see my website sellfree.co.nz problem starts in About sellfree block down bottom, thnks.
Other add ons im using are, Digitl point ad positioning, Thumbnails by Waindigo, [bd] Widget Framework, [XenMods] Multi Prefix. hope that helps.
 
Hey im using Xenforo 1.3 nd have just installed your add on, it is somehow interfering with my website sellfree.co.nz the content at the bottem has changed descriptions have gone background color has gone block headings are still there, any ideas? please see my website sellfree.co.nz problem starts in About sellfree block down bottom, thnks.
It could be due to the custom style you're using? Try checking in the default style and see if it works. If not, try disabling add-on one by one to find which add-on could be conflicting.
 
An option for users would be great to choose, which search will be displayed first.
(y)

As interim solution I created a custom user field ("searchPref") as described here:
Using Custom User Fields To Customise The Layout
and changed the template a bit. The members can now set the xF search as default search option.
PHP:
<xen:if is="{$search.search_query}">
    <xen:title>{xen:phrase search_results_for_query}: {$search.search_query}</xen:title>
    <xen:h1>{xen:phrase search_results_for_query}: <a href="{xen:link search, $search, 'searchform=1'}"><em>{$search.search_query}</em></a></xen:h1>
<xen:else />
    <xen:title>{xen:phrase search_results}</xen:title>
</xen:if>

<xen:navigation>
    <xen:breadcrumb href="{xen:link full:search}">{xen:phrase search}</xen:breadcrumb>
</xen:navigation>

<xen:container var="$head.robots">
    <meta name="robots" content="noindex" /></xen:container>

<xen:if is="{$search.searchWarnings}">
    <ol class="searchWarnings">
    <xen:foreach loop="$search.searchWarnings" value="$warning">
        <li>{xen:escape $warning, false}</li>
    </xen:foreach>
    </ol>
</xen:if>

<xen:if is="{$search.users}">
    <xen:sidebar>
        <div class="section userResults avatarList">
            <div class="secondaryContent">
                <h3>{xen:phrase matched_users}</h3>
                <ul>
                    <xen:foreach loop="$search.users" value="$user">
                            <li class="userResult">
                                <xen:avatar user="$user" size="s" img="true" />
                                <xen:username user="$user" rich="true" />
                                <div class="userTitle">{xen:helper userTitle, $user}</div>
                            </li>
                    </xen:foreach>
                </ul>
            </div>
        </div>
    </xen:sidebar>
</xen:if>

<ul class="tabs Tabs" data-panes="#rtGoogleCustomSearch_panes > li" id="rtGoogleCustomSearch_Tabs">
    <xen:if is="{$defaultTab} == 'google' AND !{$visitor.customFields.searchPref}">
        <li id="google_results"><a href="{xen:link search, $search}#google_results">{xen:phrase rtGCS_google_results}</a></li>
        <li id="site_results"><a href="{xen:link search, $search}#site_results">{xen:phrase rtGCS_site_results}</a></li>
    <xen:else />
        <xen:comment>This is a workaround for Adsense not being displayed</xen:comment>
        <xen:if is="{$debugMode}">
            <xen:require js="js/reckonsteam/googlecustomsearch/core.js" />
        <xen:else />
            <xen:require js="js/reckonsteam/googlecustomsearch/core.min.js" />
        </xen:if>
        <li id="site_results" class="active"><a class="active" href="{xen:link search, $search}#site_results">{xen:phrase rtGCS_site_results}</a></li>
        <li id="google_results"><a href="{xen:link search, $search}#google_results">{xen:phrase rtGCS_google_results}</a></li>
    </xen:if>
</ul>

<ul id="rtGoogleCustomSearch_panes">
    <xen:if is="{$defaultTab} == 'google' AND !{$visitor.customFields.searchPref}">
        <xen:include template="rtGCS_search_google_results" />
        <xen:include template="rtGCS_search_site_results" />
    <xen:else />
        <xen:include template="rtGCS_search_site_results" />
        <xen:include template="rtGCS_search_google_results" />
    </xen:if>
</ul>
 
Unfortunately I don't have iPad so I'm not really sure if this is a bug or something else is creating a issue. Can you inbox me your forum link?
 
Be interested to know what you find.

He came up with this:

In the rtGCS_search_google_results_base.css template, the following CSS is causing the problem. I assume it can just be removed without any issue.

Code:
.gsc-results .gsc-cursor-box .gsc-cursor-page:hover,
.gsc-results .gsc-cursor-box .gsc-cursor-page:focus
{
@property "pageNavPageHover";
color: @secondaryDark;
text-decoration: none;
background-color: @secondaryLighter;
border-color: @secondaryLight;
@property "/pageNavPageHover";
}

.gs-result .gs-title:hover,
.gs-result .gs-title *:hover
{
text-decoration : underline;
}
 
Top Bottom