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 08-28-2022, 10:36 AM
Bulent Tekcan Bulent Tekcan is offline
 
Join Date: Oct 2003
Location: TURKEY - Istanbul
Posts: 437
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default vBulletin 4 Archive Font Size

Hello,

How can I change vbulletin 4 archive font size ? I need to change titles and posts font size, because google search show me error about too little and can't read.

Regards
Reply With Quote
  #2  
Old 08-28-2022, 11:14 AM
omer87 omer87 is offline
 
Join Date: Nov 2020
Posts: 5
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

/archive/archive.css
Find
HTML Code:
body, li, td, div {
	font: 11px verdana, arial, sans-serif;
}
Replace
HTML Code:
body, li, td, div {
	font: 18px verdana, arial, sans-serif;
}
Find
HTML Code:
li {
	font-size: 10pt;
}
Replace
HTML Code:
li {
	font-size: 14pt;
}
Reply With Quote
  #3  
Old 08-28-2022, 12:05 PM
Bulent Tekcan Bulent Tekcan is offline
 
Join Date: Oct 2003
Location: TURKEY - Istanbul
Posts: 437
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks for your reply. Is it any way to without change any files ? For example with vbulletin.css or anything ?

Regards
Reply With Quote
  #4  
Old 08-28-2022, 03:17 PM
omer87 omer87 is offline
 
Join Date: Nov 2020
Posts: 5
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Bulent Tekcan View Post
Thanks for your reply. Is it any way to without change any files ? For example with vbulletin.css or anything ?


Regards
Unfortunately no, as this is the only CSS file for the archive page.

Maalesef hayır, ??nk? bu arşiv sayfası i?in tek CSS dosyasıdır.
Reply With Quote
  #5  
Old 08-28-2022, 05:45 PM
omer87 omer87 is offline
 
Join Date: Nov 2020
Posts: 5
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Bulent Tekcan View Post
Thanks for your reply. Is it any way to without change any files ? For example with vbulletin.css or anything ?


Regards

I found a solution.
Add css code to archive part instead of ad code.
I added screenshots


HTML Code:
<style>
body, li, td, div {
	font: 18px verdana, arial, sans-serif;
}
li {
	font-size: 14pt;
}
</style>
----------

Bir ??z?m buldum.
Arşiv kısmına reklam kodu yerine css kodu ekleyin.
Ekran resimleri ekledim
Attached Images
File Type: png screenshot-2022.08.28-21_39_29.png (70.0 KB, 0 views)
File Type: png screenshot-2022.08.28-21_40_43.png (19.2 KB, 0 views)
Reply With Quote
  #6  
Old 08-29-2022, 03:53 AM
Bulent Tekcan Bulent Tekcan is offline
 
Join Date: Oct 2003
Location: TURKEY - Istanbul
Posts: 437
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by omer87 View Post
I found a solution.
Add css code to archive part instead of ad code.
I added screenshots


HTML Code:
<style>
body, li, td, div {
	font: 18px verdana, arial, sans-serif;
}
li {
	font-size: 14pt;
}
</style>
----------

Bir ??z?m buldum.
Arşiv kısmına reklam kodu yerine css kodu ekleyin.
Ekran resimleri ekledim
Thanks so much 👍

D?n ben de bunu buldum aynen, hatta şu koduda ekledim archive?e ve sorun k?kten ??z?ld?

<meta name="viewport" content="width=device-width, initial-scale=1.0">

?ok teşekk?rler 👍
Reply With Quote
Благодарность от:
omer87
  #7  
Old 08-30-2022, 05:09 AM
Bulent Tekcan Bulent Tekcan is offline
 
Join Date: Oct 2003
Location: TURKEY - Istanbul
Posts: 437
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by omer87 View Post
I found a solution.
Add css code to archive part instead of ad code.
I added screenshots


HTML Code:
<style>body, li, td, div {    font: 18px verdana, arial, sans-serif;}li {    font-size: 14pt;}</style>
----------

Bir ??z?m buldum.
Arşiv kısmına reklam kodu yerine css kodu ekleyin.
Ekran resimleri ekledim
Hello again,

Dostum http ile başlayan her satır konu alanı dışına sağa doğru gidiyor. Normal yazı gibi alta devam etmiyor. Bu eskiden beri b?yle idi. Nedeni veya ??z?m? hakkında bir fikrin var mıdır ? Aslında bana lazım olan Archive'de http,img olan linkleri misafire kapatmak, bu kesin ??z?m olacak.

Any idea this problem?



Regards
Attached Images
File Type: jpg 1F8682CE-295D-480A-9B41-AA3502087400.jpg (77.2 KB, 0 views)
Reply With Quote
  #8  
Old 09-02-2022, 08:00 PM
omer87 omer87 is offline
 
Join Date: Nov 2020
Posts: 5
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

This is how I solved it.

HTML Code:
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<style>
body, li, td, div {
	font: 18px verdana, arial, sans-serif;
}
li {
	font-size: 14pt;
}
div.posttext {
    overflow-x: hidden;
}
</style>
Reply With Quote
  #9  
Old 09-03-2022, 12:13 AM
Bulent Tekcan Bulent Tekcan is offline
 
Join Date: Oct 2003
Location: TURKEY - Istanbul
Posts: 437
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks fot your reply.

Selam,

Ben de b?yle yaptım ?alışıyor gibi ancak Lighthouse test sitesi kod yok diyor 😞

https://web.dev/measure/
Attached Images
File Type: jpg 66DD467A-271D-456C-A145-4C758179EDCA.jpg (39.2 KB, 0 views)
Reply With Quote
  #10  
Old 09-04-2022, 04:11 PM
yilmaz's Avatar
yilmaz yilmaz is offline
 
Join Date: Sep 2004
Posts: 751
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

<a href="https://vborg.vbsupport.ru/showthread.php?t=329320" target="_blank">https://vborg.vbsupport.ru/showthread.php?t=329320</a>
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 02:38 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04272 seconds
  • Memory Usage 2,283KB
  • Queries Executed 12 (?)
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
  • (8)bbcode_html
  • (4)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
  • (1)post_thanks_box_bit
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit
  • (10)post_thanks_postbit_info
  • (10)postbit
  • (4)postbit_attachment
  • (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
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • postbit_attachment
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete