vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Community Reviews (https://vborg.vbsupport.ru/forumdisplay.php?f=14)
-   -   AdsenseExperts.com - The Professional Adsense Publisher Network (https://vborg.vbsupport.ru/showthread.php?t=252900)

StarBuG 12-11-2010 02:16 PM

Thanks for your feedback.

I am a fan of "less is more" and I personally try to keep it simple
and professional. That is why I am not a fan of background images.
It is different if you run a design website or a professional business
website. I think a background image would be to much.

The welcome box is "in your face", I know but that is exactly like I want it.

I want people to register and not to keep them lurking.
I maybe change my mind later but right now I like it.

Regarding the navigation, I don't really get what you mean by that?
The forum navigation contains all the important links.
And I don't want to link inside my content from the navbar.

I don't use blogs, don't offer video uploads or such.

Care to elaborate?

FunnyMan 12-20-2010 05:55 PM

Simply i would say "WOW"

Overall very good design. Let me say it is simple, easily readable, nice layouts, smooth colors and good fonts etc...much more good things to say about your site....

Looks like site navigation links you have choosen xenforo design, it looks nice...would love to know if this mod is available here at vb.org :)

Visited your site, read about experience and vbseo usage report etc..more detail content. would visit again...

good luck Doc...thanks.

StarBuG 12-22-2010 01:35 PM

I did the Breadcrumb mod myself. It is not that hard ;)

in the navbar template find:
Code:

<div id="breadcrumb" class="breadcrumb">
    <ul class="floatcontainer">
        <li class="navbithome"><a href="index.php{vb:raw session.sessionurl_q}" accesskey="1"><img src="{vb:stylevar imgdir_misc}/navbit-home.png" alt="{vb:rawphrase home}" /></a></li>

        {vb:raw navbits.breadcrumb}
        {vb:raw navbits.lastelement}
    </ul>
    <hr />
</div>

and replace it with:
Code:

<div class="breadBoxTop">
  <fieldset class="breadcrumb">
    <ul class="crumbs">
        {vb:raw navbits.breadcrumb}
        {vb:raw navbits.lastelement}
    </fieldset>
<br />
</div>

in the navbar_link template find:

Code:

<vb:if condition="$show['breadcrumb']">
    <li class="navbit"><a href="{vb:raw nav_url}">{vb:raw nav_title}</a></li>
<vb:else />
    <li class="navbit lastnavbit"><span>{vb:raw nav_title}</span></li>
</vb:if>

and replace it with:
Code:

<vb:if condition="$show['breadcrumb']">
 <li class="crust">
  <a href="{vb:raw nav_url}" class="crumb"><span>{vb:raw nav_title}</span></a>
  <span class="arrow"><span>&gt;</span></span></li>
<vb:else />
 <li class="crust">
  <p class="crumb">{vb:raw nav_title}</p>
  <span class="arrow"><span>&gt;</span></span></li>
</ul>
</vb:if>

in additional.css add:
Code:

/*------------------------------------------------------------------------------
| #> Breadcrumb Xenforo Style by AdSenseExperts.com
+-----------------------------------------------------------------------------*/
.breadBoxTop { }
.breadBoxTop .topCtrl { margin-left: 5px; float: right; line-height: 24px; }
.breadcrumb { font-size: 11px; background: #F2F6F8 url('images/gradients/category-23px-light.png') repeat-x top; border: 1px solid #A5CAE4; border-radius: 5px; -webkit-border-radius: 5px; -moz-border-radius: 5px; -khtml-border-radius: 5px; overflow: hidden; zoom: 1; }
.breadcrumb .crust { display: block; float: left; position: relative; zoom: 1; }
.breadcrumb .crust a.crumb { text-decoration: none; background-color: #F2F6F8; padding: 0 10px 0 18px; margin-bottom: -1px; border-bottom: 1px solid #A5CAE4; outline: 0 none; -moz-outline-style: 0 none; display: block; line-height: 24px; _border-bottom: none; }
.breadcrumb .crust p.crumb { text-decoration: none; background-color: #F2F6F8; padding: 0 10px 0 18px; margin-bottom: -1px; border-bottom: 1px solid #A5CAE4; outline: 0 none; -moz-outline-style: 0 none; display: block; line-height: 24px; _border-bottom: none; }
.breadcrumb .crust:first-child a.crumb { padding-left: 10px; border-top-left-radius: 4px; -webkit-border-top-left-radius: 4px; -moz-border-radius-topleft: 4px; -khtml-border-top-left-radius: 4px; border-bottom-left-radius: 4px; -webkit-border-bottom-left-radius: 4px; -moz-border-radius-bottomleft: 4px; -khtml-border-bottom-left-radius: 4px; }
.breadcrumb .crust:last-child a.crumb { font-weight: normal; -moz-border-radius-bottomleft:4px; -moz-border-radius-topleft:4px; padding-left:20px; pointer-events: none; cursor: default; background-color: #F7F9FA; color: #333333; }
.breadcrumb .crust:last-child p.crumb { font-weight: normal; -moz-border-radius-bottomleft:4px; -moz-border-radius-topleft:4px; padding-left:20px; pointer-events: none; cursor: default; background-color: #F7F9FA; color: #333333; }
.breadcrumb .crust .arrow { border: 12px solid transparent; border-right: 1px none black; border-left-color: #A5CAE4; display: block; position: absolute; right: -12px; top: 0px; z-index: 50; width: 0px; height: 0px; }
.breadcrumb .crust .arrow span { border: 12px solid transparent; border-right: 1px none black; border-left-color: #F2F6F8; display: block; position: absolute; left: -13px; top: -12px; z-index: 51; white-space: nowrap; overflow: hidden; text-indent: 9999px; width: 0px; height: 0px; }
.breadcrumb .crust:hover:last-child a.crumb { background-color: #F7F9FA; }
.breadcrumb .crust:hover a.crumb { background-color: #d7edfc; }
.breadcrumb .crust:hover:last-child .arrow span { border-left-color: #F7F9FA; }
.breadcrumb .crust:hover .arrow span { border-left-color: #d7edfc; }
.breadcrumb .crust .arrow { /* hide from IE6 */ _display: none; }

E Voila :)

FunnyMan 12-22-2010 03:00 PM

Hey Doc,

So nice of you...can you please post it as a Mod? i am sure it will be helpful for many. :)

Blue-Inc 12-23-2010 01:19 PM

Registered and book marked. Will need some tips in the near future.

StarBuG 02-11-2011 08:14 PM

I'll think about releasing my breadcrumb mod as modification here on vb.org


All times are GMT. The time now is 11:47 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01047 seconds
  • Memory Usage 1,742KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (5)bbcode_code_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (6)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete