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

Reply
 
Thread Tools Display Modes
  #1  
Old 10-20-2009, 12:15 PM
aengus aengus is offline
 
Join Date: Nov 2004
Posts: 15
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default category strips sizing issue

Hello,

I have been customizing my template and my category strips are double the size I would like to see them and I am not having any luck figuring out how or where to change it? I am very new so be gentle

Here is a picture of what I mean in case I am not explaining it well



The strips in that picture I would like to see about half that size. Any help would be greatly appreciated!

TIA
Reply With Quote
  #2  
Old 10-20-2009, 12:36 PM
DeanLag DeanLag is offline
 
Join Date: Jul 2009
Posts: 185
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hmm I think its a CSS issue.

Go into ACP > Manage Style > Main CSS of style > Additional CSS definitions:

Look for:
/* ***** small padding on 'thead' elements ***** */
td.thead, th.thead, div.thead { padding: Xpx; }

Try changing the value to 4px.
Then again, its my best guess so please do tell me if its working or not (:
Reply With Quote
  #3  
Old 10-20-2009, 12:49 PM
aengus aengus is offline
 
Join Date: Nov 2004
Posts: 15
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thank you for the suggestion, but it is set to 4px in that spot.
Reply With Quote
  #4  
Old 10-20-2009, 02:15 PM
Lynne's Avatar
Lynne Lynne is offline
 
Join Date: Sep 2004
Location: California/Idaho
Posts: 41,180
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hard to tell from just a picture. I don't suppose those headings are in <h> tags (h1, h2, h3, etc), are they?
Reply With Quote
  #5  
Old 10-20-2009, 02:24 PM
JamesC70 JamesC70 is offline
 
Join Date: Jun 2007
Posts: 219
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

The category strips look like images to me .... shades of black resembling light reflecting off a black pipe or something.

If so, then the height of the image is your problem. Locate the image used in the strips, open it with a graphics editing program, and reduce the height somehow.

Please note that graphics editor programs are beyond the scope of vBulletin.org.
Reply With Quote
  #6  
Old 10-20-2009, 02:35 PM
aengus aengus is offline
 
Join Date: Nov 2004
Posts: 15
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

actually, the image is showing double, so thats not it.

Here is the image and Im sorry, i dont have the theme available is why I am trying to show the picture.

http://www.swfansite.com/images/skin...lt/footer1.png

I have put up the source and a bigger picture, maybe that will help?

I saved the source from viewing the page here

http://www.swfansite.com/test/theme.txt

and also put up a bigger image hoping it might help here

http://www.swfansite.com/theme.jpg

If there is a better suggestion of what I can do to provide more info, I will do it I just dont know what else to do. The theme isnt active because its not built. I guess if you guys think its real important I can activate it as a theme option and just tell my users to ignore it LOL.

Thank you all for taking the time, I do appreciate the suggestions

ETA: Lynne I dont think so, but maybe the source I provided will be more reliable than I am to answer that LOL
Reply With Quote
  #7  
Old 10-20-2009, 02:37 PM
DeanLag DeanLag is offline
 
Join Date: Jul 2009
Posts: 185
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Yep, http://www.swfansite.com/images//ski...gradient_2.gif seems to be the culprit as its too large.

CSS: .vbmenu_control

Code:
.vbmenu_control {
	background: #6666CC url(http://www.swfansite.com/images//skins/default/gradient_2.gif);
	color: #FFFFFF;
	font: bold 11px tahoma, verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;
	padding: 3px 6px 3px 6px;
	white-space: nowrap;
}
Need to change the image. Right now its 30px.
Reply With Quote
  #8  
Old 10-20-2009, 02:55 PM
aengus aengus is offline
 
Join Date: Nov 2004
Posts: 15
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

OK, I took out the url portion to see what happened, but nothing changed unfortunately. It currently looks like this


Code:
.vbmenu_control
{
	background: #6666CC;
	color: #FFFFFF;
	font: bold 11px tahoma, verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;
	padding: 3px 6px 3px 6px;
	white-space: nowrap;
}
--------------- Added [DATE]1256054837[/DATE] at [TIME]1256054837[/TIME] ---------------

I'm sorry everyone I would like to enable the option to change styles for unregistered users but I cant find where to do it ROFL. Thank you for your patience with me.
Reply With Quote
  #9  
Old 10-20-2009, 03:19 PM
DeanLag DeanLag is offline
 
Join Date: Jul 2009
Posts: 185
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Kay found it:

In forumhome_forumbit_level1_nopost

Find:
$forum[title]

Either its
Code:
<a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]"><h4>$forum[title]</h4></a>
or
Code:
<h4><a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]">$forum[title]</a></h4>
Remove the H4 and it should be fine. Tested and repeated it on my board
Reply With Quote
  #10  
Old 10-20-2009, 04:08 PM
aengus aengus is offline
 
Join Date: Nov 2004
Posts: 15
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hmm I cant find that!

Thanks Dean for locating it, and looks like Lynne was right on top of this before!

OK so where do I find this? I searched and $forum[title] wasnt showing up anywhere

I then did a search on <h4> with no luck either. I am viewing the style> all options
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 07:07 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.07566 seconds
  • Memory Usage 2,252KB
  • Queries Executed 11 (?)
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
  • (4)bbcode_code
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (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
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete