You are not logged in.
You can post links like google.com which will be rendered as text but you will not be able to post messages that contain complete URLs like www.google.com
Thank you for your understanding!Pages: 1
USES: display a simple rss icon next to the current category that the user is viewing.
SAVE AND UPLOAD:
(upload as /img/cat_rss.png)
OPEN: /_templates/category.tpl
FIND:
<h2>
{$translations.category.jobs_for} {$current_category}</a>
</h2>
REPLACE WITH:
<h2 id="none">
{$translations.category.jobs_for} {$current_category} <a href="{$BASE_URL}rss/{$current_category}/" alt="RSS Feeds for {$current_category}"/><img src="{$BASE_URL}img/cat_rss.png" border="0" alt="RSS Job Feed"></a>
</h2>OPEN: /css/screen.css
FIND:
a {color:#0099CC; background-color:transparent;text-decoration:none;}
a:hover {color:#0099CC; background-color:transparent; text-decoration:underline;}
ADD AFTER:
div#job-listings h2#none a:hover {background-color:transparent !important;} // no background color for rss category rss icon(only tested in firefox. I dont really care about IE users. If it works in IE please post and tell us.)
DEMO: 
Last edited by N2S (2008-10-29 03:51:52)
Offline
hey mate. it works in IE but not in my firefox for some reason
can u help
nice addition.
www.jobberBoards.com - Helping Promote Irish Charities and offering Free Advert Services for Employers
Offline
any help with this... thanks
www.jobberBoards.com - Helping Promote Irish Charities and offering Free Advert Services for Employers
Offline
Seems to work fine when I visit your site. Maybe some (ad-blocking) plugin hides the image or so?
Member of Jobberbase Development Team - Implementation and Coding
Visit my Blog: ChronoScripts (JobberBase scripts, support and freelance)
JobBoards: Telefonisch Werk and Top Bijbaan
Offline
thanks for the reply.
it seems your option to remove the hover over background blue color messed up the h2 tag.
when anyone hovers over my rss icon the background turns blue...anyway around this
www.jobberBoards.com - Helping Promote Irish Charities and offering Free Advert Services for Employers
Offline
Only did a quick check on your CSS file, but the following seems to work:
#content a:hover {
background-color:#0099CC;
color:#FFFFFF;
padding:2px;
text-decoration:none;
}change to
#content a:hover {
color:#FFFFFF;
padding:2px;
text-decoration:none;
}Member of Jobberbase Development Team - Implementation and Coding
Visit my Blog: ChronoScripts (JobberBase scripts, support and freelance)
JobBoards: Telefonisch Werk and Top Bijbaan
Offline
You could also add a class to your feed icon. From that you can be more directive with the css. Instead of changing the hover state of all the links in #content you can specify only the hover state of the rss icon. So starting from step 1 paste
<h2 id="none">{$translations.category.jobs_for} {$current_category} <a href="{$BASE_URL}rss/{$current_category}/" alt="RSS Feeds for {$current_category}"/><img class="feed_icon "src="{$BASE_URL}img/cat_rss.png" border="0" alt="RSS Job Feed"></a></h2>Notice the added class to the icon.
Your css than should be
a.feed_icon:hover {background-color:transparent !important;}Member of Jobberbase Development Team - Templates/Usability :: Looking for installation and/or custom design? :: Beautiful Wordpress themes
Offline
for me it works like that:
in the template:
<div id="rss-feed">
<h2>
{$translations.category.jobs_for} {$current_category} <a href="{$BASE_URL}rss/{$current_category}/" alt="RSS Feeds for {$current_category}"/><img src="{$BASE_URL}img/cat_rss.png" border="0" alt="RSS Job Feed"></a>
</h2>
</div>in css:
div#rss-feed a:hover { background-color:transparent !important;}You could also add a class to your feed icon. From that you can be more directive with the css. Instead of changing the hover state of all the links in #content you can specify only the hover state of the rss icon. So starting from step 1 paste
<h2 id="none">{$translations.category.jobs_for} {$current_category} <a href="{$BASE_URL}rss/{$current_category}/" alt="RSS Feeds for {$current_category}"/><img class="feed_icon "src="{$BASE_URL}img/cat_rss.png" border="0" alt="RSS Job Feed"></a></h2>Notice the added class to the icon.
Your css than should be
a.feed_icon:hover {background-color:transparent !important;}
Offline
excellent thanks. I opted for the last option. worked perfect
Chronos by the way I am very impressed with your site and theme? Do you plan to share the code ![]()
you can PM me if you want. thanks
www.jobberBoards.com - Helping Promote Irish Charities and offering Free Advert Services for Employers
Offline
I won't be sharing the theme I'm currently using (I'd like to stay unique at some points), but I was planning to release 1~3 basic layouts to improve my skills a bit (and since all JB installs look very much alike, I suppose they'd be welcome). Any suggestions?
Member of Jobberbase Development Team - Implementation and Coding
Visit my Blog: ChronoScripts (JobberBase scripts, support and freelance)
JobBoards: Telefonisch Werk and Top Bijbaan
Offline
Pages: 1