Do any idea i can clear out the frame?
Its not that perfect when i upload a partner logo that having a gray frame.
Please help. Thanks.
Christopher Lum
Do any idea i can clear out the frame?
Its not that perfect when i upload a partner logo that having a gray frame.
Please help. Thanks.
Christopher Lum
Hi Christopher,
Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:
#top .partner_list .inner_column {
border: none;
}
Regards,
Devin
Hi,
How can I open other page to logo partner list?
Thanks.
Hi cemilturken,
Unfortunately we don't have any option to add links to the footer logo/partner list.
Regards,
Ismael
Hi,
I guess I asked the wrong question. Or, I misunderstood your answer. Logo / Partners - How to open in a new window?
Thanks.
Hi,
Open includes > helper-template-dynamic.php then find this code under "logo" function
if(!empty($set['link']) && $set['link'] != "http://")
{
$img = "<a href='".$set['link']."' title=''>$img</a>";
}
Replace it with
if(!empty($set['link']) && $set['link'] != "http://")
{
$img = "<a target="_blank" href='".$set['link']."' title=''>$img</a>";
}
Note: You should place a link for each logo on the backend.
Regards,
Ismael
Hi,
Thank you; but, I think those codes are wrong.. Don't work my site.
Regards.
Hey cemilturken, just a member here...
But actually I had to put this code in my replete theme. Ismael's code is right, just that "_blank" should be in parenthesis like '_blank' instead of quotations. Just a typo I'm sure. I tested this out again to make sure too.
So ....
$img = "<a target="_blank" href='".$set['link']."' title=''>$img</a>";
Should be....
$img = "<a target='_blank' href='".$set['link']."' title=''>$img</a>";
Same place open /includes/helper-template-dynamic.php (line 441)
Worked for me.
The answer for this was actually answered for a different theme a month ago.
@ http://www.kriesi.at/support/topic/chioces-theme-partner-logo-open-in-new-page
Try to search the forum if you have the time because it will save you MUCH time as I actually needed this code roughly a week ago and found it in less than a minute.
Excellent choice on theme, I love Replete! The dynamic templates are amazing!
Hello,
My bad.. I place quotation instead of a single apostrophe. Thanks Noahj for helping us out. :)
Regards,
Ismael
Thank you so much Noahj. Thanks :)
Kind Regards
This topic has been closed to new replies.