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

Reply
 
Thread Tools Display Modes
  #1  
Old 10-08-2015, 07:49 AM
origami origami is offline
 
Join Date: Aug 2015
Posts: 10
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default url hyperlink forum

helloworld,
i want to know how i can change link url color on my forum, i not found.
vbulletin 5.1.9 only

where i add in additionnel.css???

look at this screen 1 :


look at this screen 2 :
Reply With Quote
  #2  
Old 10-09-2015, 05:08 AM
origami origami is offline
 
Join Date: Aug 2015
Posts: 10
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

anyone?
please where i find it, i would change url color link
because i already done and it 's not working

/* change link color in article and preview */
.vbcms_content .postcontainer a {color:green;};

or
/* hyperllink color
.postcontent a {
color: #3333CC;
}


help me
Reply With Quote
  #3  
Old 10-10-2015, 02:04 PM
napy8gen napy8gen is offline
 
Join Date: Jan 2006
Location: port ++++son
Posts: 519
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Styles & Themes> Style Manager> Style name > Style Variable Editor> Global> body_link_color
Reply With Quote
  #4  
Old 10-11-2015, 09:27 AM
origami origami is offline
 
Join Date: Aug 2015
Posts: 10
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

i already do it

it don t succes on additionnel.css

edit: i want use it, see :
/*setup*/

* {
margin: 0;
padding: 0;
}

#container {
width: 500px;
margin: auto;
}
/*neeeeoooon*/

p {
text-align: center;
font-size: 7em;
margin: 20px 0 20px 0;
}

a {
text-decoration: none;
-webkit-transition: all 0.5s;
-moz-transition: all 0.5s;
transition: all 0.5s;
}

p:nth-child(3) a {
color: #FFDD1B;
font-family: Pacifico;
}

p:nth-child(3) a:hover {
-webkit-animation: neon3 1.5s ease-in-out infinite alternate;
-moz-animation: neon3 1.5s ease-in-out infinite alternate;
animation: neon3 1.5s ease-in-out infinite alternate;
}

p a:hover {
color: #ffffff;
}
/*glow for webkit*/

@-webkit-keyframes neon3 {
from {
text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #FFDD1B, 0 0 70px #FFDD1B, 0 0 80px #FFDD1B, 0 0 100px #FFDD1B, 0 0 150px #FFDD1B;
}
to {
text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #FFDD1B, 0 0 35px #FFDD1B, 0 0 40px #FFDD1B, 0 0 50px #FFDD1B, 0 0 75px #FFDD1B;
}
}


/*glow*/

@keyframes neon3 {
from {
text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #FFDD1B, 0 0 70px #FFDD1B, 0 0 80px #FFDD1B, 0 0 100px #FFDD1B, 0 0 150px #FFDD1B;
}
to {
text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #FFDD1B, 0 0 35px #FFDD1B, 0 0 40px #FFDD1B, 0 0 50px #FFDD1B, 0 0 75px #FFDD1B;
}
}


/*REEEEEEEEEEESPONSIVE*/

@media (max-width: 650px) {
#container {
width: 100%;
}
p {
font-size: 3.5em;
}
}
Reply With Quote
  #5  
Old 10-13-2015, 06:38 AM
origami origami is offline
 
Join Date: Aug 2015
Posts: 10
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

up anyone?
Reply With Quote
  #6  
Old 10-15-2015, 09:20 PM
josueinaki josueinaki is offline
 
Join Date: Sep 2015
Posts: 12
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hello, go to your CSS_GLOBAL and search for this

.widget-tabs.ui-tabs .ui-widget-content a

you found something like this

.widget-tabs.ui-tabs .ui-widget-content a,
.widget-tabs.ui-tabs .ui-widget-content a:active,
.widget-tabs.ui-tabs .ui-widget-content a:visited,
.sb-dialog.ui-dialog-content.ui-widget-content a,
.sb-dialog.ui-dialog-content.ui-widget-content a:active,
.sb-dialog.ui-dialog-content.ui-widget-content a:visited {
color: {vb:stylevar body_link_color}; << change for the color like #67435;
text-decoration: {vb:stylevar body_link_decoration};

that is for visited links if you search the same again you have this:

.widget-tabs.ui-tabs .ui-widget-content a:hover,
.sb-dialog.ui-dialog-content.ui-widget-content a:hover {
color: {vb:stylevar body_link_color_hover}; <<<<< this is what you want
text-decoration: {vb:stylevar body_link_decoration_hover};
Reply With Quote
  #7  
Old 10-16-2015, 11:20 AM
origami origami is offline
 
Join Date: Aug 2015
Posts: 10
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

thanks you

j'ai trouv? ?a tout seul c'est bon
i found it alone, it 's good

i am already add in aditionnel.css, it s good
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 06:01 AM.


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.06777 seconds
  • Memory Usage 2,214KB
  • 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
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (7)post_thanks_box
  • (7)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (7)post_thanks_postbit_info
  • (7)postbit
  • (7)postbit_onlinestatus
  • (7)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