Go Back   vb.org Archive > vBulletin 4 Discussion > vB4 Design and Graphics Discussions
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 03-21-2012, 09:07 PM
Dave234 Dave234 is offline
 
Join Date: Mar 2012
Posts: 256
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default I want my site to look like this.

Hello, everyone.

I would really like to make a forum that looks vaguely like this:

http://www.hipforums.com/newforums/index.php

Not so much the style or content, but in the layout.

I love the use of forums and sub-forums.

I also love how it isn't stretched all the way across the page, so that the left side of the forum titles are closer to where the eye naturally goes.

It just seems to be a very good community type feel to it. (Though I haven't spent any time on it, so I really can't attest to what the site is actually like!)

Does anyone know how I might be able to make my vbulletin publishing suite 4.1.11 look somewhat like this?

I'm in the Admin Control Panel > Styles & Templates > Style Manager, but man oh man is it confusing in there.
Reply With Quote
  #2  
Old 03-24-2012, 01:14 PM
RobbieZ RobbieZ is offline
 
Join Date: Jul 2008
Posts: 1,117
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Changing your sidebar from right to left would be a good start!
Reply With Quote
  #3  
Old 03-24-2012, 05:46 PM
Dave234 Dave234 is offline
 
Join Date: Mar 2012
Posts: 256
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks, RobbieZ. I am new to making a website. On my vBulletin website, I do not see any sidebar. How do I even get it on there in the first place?
Reply With Quote
  #4  
Old 03-24-2012, 09:09 PM
Reycer Reycer is offline
 
Join Date: Jul 2008
Location: Lebanon, MO (USA)
Posts: 747
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

admincp--->settings--->Forum Sidebar and Block Options
admincp--->forums & moderators--->Forum Blocks Manager (to add the sideblocks)
Reply With Quote
  #5  
Old 03-24-2012, 09:44 PM
Dave234 Dave234 is offline
 
Join Date: Mar 2012
Posts: 256
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Excellent, so I've got it enabled now. But in order to show anything, I need to create a block. What do the following blocks mean? These are the choices of blocks I have:

Blog Entries
CMS Articles
Custom HTML/PHP
New Forum Posts
Group Discussions
Tag Cloud
Forum Threads

Where would I be able to put an ad? What about an ad for a store in my own website?
Reply With Quote
  #6  
Old 03-25-2012, 03:08 PM
RobbieZ RobbieZ is offline
 
Join Date: Jul 2008
Posts: 1,117
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

You would need to use the Custom HTML/PHP option for your advert.

Create a nice image in your favourite gfx software allowing for width and utilize HTML to display your image called from a misc folder you uploaded it to.
Reply With Quote
  #7  
Old 03-25-2012, 03:58 PM
Dave234 Dave234 is offline
 
Join Date: Mar 2012
Posts: 256
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ok, so I'm in the "Add new block: Custom HTML/PHP" screen, but I don't see an option to "Browse..." and choose an image file from my computer.

For "Content Type" there are three choices:

Text
HTML
PHP

I chose HTML.

There is a space where I can type some words. They show the example of:

$my_output = 'Hello, world.';
return $my_output;

So can I only use text here? I can't put an image?

Under that is "Template to Use", with the description: "The block will use this template to render your content." Then it says, in the empty field: block_html

I don't get it. What does that mean? How do I make it connect to the online store?

--------------- Added [DATE]1332694827[/DATE] at [TIME]1332694827[/TIME] ---------------

Now that I put it on the website, it shows this on my website:

QUOTE
Custom HTML/PHP - Ad for Stuff Sold on My Site
$my_output = 'This space will be for selling stuff from my online store.'; return $my_output;
UNQUOTE

Why does it actually say "$my_output = '"?

I thought that was part of the code or something?

--------------- Added [DATE]1332695127[/DATE] at [TIME]1332695127[/TIME] ---------------

OK, so I just removed the "$my_output" stuff, just writing it in as it should appear, and that worked.

My remaining questions are:

1. How do I connect this to my online store? I don't see any kind of place to put a link to URL.

2. How do I put an image here? It looks like it onyl allows text.

Thanks!
Reply With Quote
  #8  
Old 03-25-2012, 11:31 PM
Reycer Reycer is offline
 
Join Date: Jul 2008
Location: Lebanon, MO (USA)
Posts: 747
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

1. How do I connect this to my online store? I don't see any kind of place to put a link to URL.

2. How do I put an image here? It looks like it onyl allows text.




1: If your wanting to add a link you'll need to write the link. You can use
Code:
<a href="http://www.mysite.com/">My Site</a>
2: Adding an image also requires a code. You'll have to upload the pic to your server or pic sharing site (like flickr).
Code:
<img src="linktomyimage.jpg">
Or you can make a picture linkable
Code:
<a href="http://www.mysite.com/" target="_blank">
<img src="www.linktomyimage.jpg" width="300" height="221" border="0" style="border:none;" alt="I can name my photo here" />
</a>
Reply With Quote
  #9  
Old 03-26-2012, 12:56 AM
Dave234 Dave234 is offline
 
Join Date: Mar 2012
Posts: 256
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Where do I put this code?
Reply With Quote
  #10  
Old 03-26-2012, 01:09 AM
Reycer Reycer is offline
 
Join Date: Jul 2008
Location: Lebanon, MO (USA)
Posts: 747
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Dave234 View Post
"Add new block: Custom HTML/PHP"

For "Content Type" there are three choices:

Text
HTML
PHP

Choose HTML and enter your code of choice in content.
Reply With Quote
Reply


Posting Rules
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 On
HTML code is Off

Forum Jump


All times are GMT. The time now is 04:26 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.03893 seconds
  • Memory Usage 2,245KB
  • Queries Executed 13 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (3)bbcode_code
  • (1)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (10)postbit
  • (10)postbit_onlinestatus
  • (10)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.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
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete