• Register
    • Help

    striker  0 Items
    Currently Supporting
    • Home
    • News
    • Forum
      • Try XenForo Demo
      • New Posts
      • FAQ
      • Calendar
      • Community
        • Groups
        • Albums
        • Member List
      • Forum Actions
        • Mark Forums Read
      • Quick Links
        • Today's Posts
        • Who's Online
      • Sponsor
        • Sponsor a Feature
        • List of Donors
    • Wiki
    • Support
    • What's New?
    • Buy Now
    • Manual
    • 
    • Forum
    • VaultWiki How-Tos
    • VaultWiki Questions
    • Post size font

    1. Welcome to VaultWiki.org, home of the wiki add-on for vBulletin and XenForo!

      VaultWiki allows your existing forum users to collaborate on creating and managing a site's content pages. VaultWiki is a fully-featured and fully-supported wiki solution for vBulletin and XenForo.

      The VaultWiki Team encourages you to join our community of forum administrators and check out VaultWiki for yourself.

    Results 1 to 9 of 9

    Thread: Post size font

    • Thread Tools
      • Show Printable Version
    1. June 29, 2009 #1
      Jella
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • Visit Homepage
      • View Articles
      Jella is offline
      Regular Member
      Join Date
      May 1, 2009
      Location
      Lampland, MA
      Posts
      119
      Rep Power
      217

      Question Post size font

      Where would I go to force the size of the actual wiki post size to a larger font? Not the subject etc... but the content. Thank you.

      I looked at the css but its confusing for me.

      I want to force post size to what is vbulletin bbcode size 3
      Reply With Quote Reply With Quote

    2. June 29, 2009 #2
      pegasus
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • Visit Homepage
      • View Articles
      pegasus is offline
      VaultWiki Team
      Join Date
      March 28, 2004
      Location
      New York, NY
      Posts
      2,959
      Blog Entries
      18
      Rep Power
      687
      Not sure what "size 3" is because it is going to be different on every board. Go to AdminCP -> CES VaultWiki -> Style Manager -> Wiki CSS -> vault_css_boxes:
      Code:
      .vw-content { font-size: 15px; }
      - lead developer for VaultWiki
      Reply With Quote Reply With Quote

    3. July 2, 2009 #3
      Jella
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • Visit Homepage
      • View Articles
      Jella is offline
      Regular Member
      Join Date
      May 1, 2009
      Location
      Lampland, MA
      Posts
      119
      Rep Power
      217
      Will this force a rebuild of all posted wiki content? I am hoping before I change it, that it will. Is the font style there too? I want all fonts to be verdana. I'll go poke around.
      Reply With Quote Reply With Quote

    4. July 2, 2009 #4
      pegasus
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • Visit Homepage
      • View Articles
      pegasus is offline
      VaultWiki Team
      Join Date
      March 28, 2004
      Location
      New York, NY
      Posts
      2,959
      Blog Entries
      18
      Rep Power
      687
      This is all CSS, so it won't need to be rebuilt. For Verdana, you would want to put
      Code:
      font-family: Verdana;
      inside the brackets.
      - lead developer for VaultWiki
      Reply With Quote Reply With Quote

    5. July 2, 2009 #5
      Jella
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • Visit Homepage
      • View Articles
      Jella is offline
      Regular Member
      Join Date
      May 1, 2009
      Location
      Lampland, MA
      Posts
      119
      Rep Power
      217
      Thank you peg. Another question, inside a wiki (wiki only) not images, not template, but a wiki post.

      The article sites in a blue lined box, what is that box called in the template, I hope I am asking this right. See picture.



      See the blue line under

      Created by admin, 06-30-2009 at 05:58 pm
      0 Comments, 0 Views
      then the blue line... what is that called where it ends and the blue line shows as an outline around the wiki? article container?
      Reply With Quote Reply With Quote

    6. July 2, 2009 #6
      pegasus
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • Visit Homepage
      • View Articles
      pegasus is offline
      VaultWiki Team
      Join Date
      March 28, 2004
      Location
      New York, NY
      Posts
      2,959
      Blog Entries
      18
      Rep Power
      687
      If you mean the divider between the article body (.bodyContent) and the created/edited by info, that is in the template called vault_article_postbit:
      HTML Code:
      <if condition="$show['post_hr']"><hr size="1" style="color:$stylevar[tborder_bgcolor]; clear: both;" /></if>
      If you mean the box around the entire wiki that the tabs stick up out of, you would edit vault_css_boxes. Find:
      Code:
      .vw-content {
      	background-color: #fff;
      	color: #000;
      	border: 1px solid #0B198C;
      }
      It's near the top and may be different if you've already made some changes. But you can change the border color by modifying the #value of the border attribute.
      - lead developer for VaultWiki
      Reply With Quote Reply With Quote

    7. May 26, 2010 #7
      Jella
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • Visit Homepage
      • View Articles
      Jella is offline
      Regular Member
      Join Date
      May 1, 2009
      Location
      Lampland, MA
      Posts
      119
      Rep Power
      217
      Adding to the font size question rather than start a new one...., I cannot find a chart anywhere that that tells me how to compare .bodyContent { font-family: verdana; font-size: 12px; } in relation to the vbulletin editor size of 2 .... 12px seems a tad smaller than vbulletins size 2, and 13px seems a tad bigger.........vbulletins editor font size 2 is what I want...

      so instead of using font-size: 12px; what can be used in its place? font-size:=2; ???? so i can equally match the vbeditor size 2

      I've tried looking at every kind of css chart in a search.... so I'm asking here since its a wiki issue
      Regards, Jella
      Forbidden Wiki - called Jiki
      Auto Wiki - Not installed yet!
      Lamp Wiki - called Lamppedia
      Reply With Quote Reply With Quote

    8. May 26, 2010 #8
      pegasus
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • Visit Homepage
      • View Articles
      pegasus is offline
      VaultWiki Team
      Join Date
      March 28, 2004
      Location
      New York, NY
      Posts
      2,959
      Blog Entries
      18
      Rep Power
      687
      This is a common problem, and not a wiki one but a general web design problem, and unfortunately it looks like there is no easy conversion. I'm honestly surprised that reset.css doesn't attempt to fix this problem, since operating system and browser defaults can complicate things even more. Every font has a different scale that must be used, because different fonts are different sizes and have different resolution, as you would notice in a program like MS Word.

      I'm not sure what the ppem is for verdana, although knowing you need to find that out may help you. Here's a page which goes in depth about the problem and the solution (and how the solution doesn't work in Internet Explorer for font size 2 without making some custom rules): http://style.cleverchimp.com/font_si...ervals.html#cc (if you scroll up slightly you'll see a "definition" of ppem)

      It's possible the changes proposed by that article are already implemented in vBulletin 4. You can test this value to see if it achieves what you're looking for cross-browser:
      Code:
      font-size: small;
      - lead developer for VaultWiki
      Reply With Quote Reply With Quote

    9. May 27, 2010 #9
      Jella
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • Visit Homepage
      • View Articles
      Jella is offline
      Regular Member
      Join Date
      May 1, 2009
      Location
      Lampland, MA
      Posts
      119
      Rep Power
      217
      ah yes that did it... thank you
      Regards, Jella
      Forbidden Wiki - called Jiki
      Auto Wiki - Not installed yet!
      Lamp Wiki - called Lamppedia
      Reply With Quote Reply With Quote

    Similar Threads

    1. Change Area Titles Size/Color
      By WebFusion2 in forum VaultWiki Questions
      Replies: 3
      Last Post: December 20, 2015, 9:18 PM
    2. 2nd post in thread
      By Chris in forum Ideas & Suggestions
      Replies: 5
      Last Post: September 25, 2012, 11:15 PM
    3. Can't post new article after install
      By catfish_pete in forum VaultWiki Questions
      Replies: 4
      Last Post: June 29, 2011, 1:08 PM
    4. Can post a bug to the bug tracker
      By Alfa1 in forum General Discussion
      Replies: 1
      Last Post: June 24, 2011, 7:38 PM
    5. Post Install
      By mountainwxman in forum General Discussion
      Replies: 1
      Last Post: January 8, 2011, 3:26 PM

    Tags for this Thread

    admincp, all, another, because, before, between, but, called, can, changes, com, did, different, easy, entire, every, font, for, going, here, http, its, looking, looks, need, notice, only, other, out, place, post, postbit, right, see, shows, size, some, sure, tabs, that, the, there, things, this, too, value, what, where, will, without, would, you

    View Tag Cloud

    Bookmarks

    Bookmarks
    • Submit to Digg Digg
    • Submit to del.icio.us del.icio.us
    • Submit to StumbleUpon StumbleUpon
    • Submit to Google Google

    Posting Permissions

    • You may not post new threads
    • You may not post replies
    • You may not post attachments
    • You may not edit your posts
    •  
    • BB code is On
    • Smilies are On
    • [IMG] code is Off
    • [VIDEO] code is
    • HTML code is Off

    Forum Rules

    • Contact Us
    • License Agreement
    • Privacy
    • Terms
    • Top
    All times are GMT -4. The time now is 1:32 AM.
    This site uses cookies to help personalize content, to tailor your experience, and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.
    Learn more… Accept Remind me later
  • striker
    Powered by vBulletin® Version 4.2.5 Beta 2
    Copyright © 2025 vBulletin Solutions Inc. All rights reserved.
    Search Engine Optimisation provided by DragonByte SEO (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
    Copyright © 2008 - 2024 VaultWiki Team, Cracked Egg Studios, LLC.