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

Reply
 
Thread Tools Display Modes
  #1  
Old 02-06-2016, 04:02 PM
DemOnstar's Avatar
DemOnstar DemOnstar is offline
 
Join Date: Dec 2012
Posts: 859
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default Module ID reference

Hello. . .

When creating a module, (static html for example) does each module automatically get given it's own number for id purposes?

How does one stylize one individual module without it having any effect on any other?

I would like to position:fixed; one module with additional.css but I can't seem to separate it from the others...

Thank you. . .

Edit:

Okay, I have found out that they do have an ID but now wondering how to asign that with additional.css. .

Code:
.canvas-layout-container .canvas-widget {
Reply With Quote
  #2  
Old 02-06-2016, 06:21 PM
shimei shimei is offline
 
Join Date: Feb 2015
Posts: 216
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Interested in learning how. I see that the widget number is displayed in this case it is #widget_168

Reply With Quote
  #3  
Old 02-06-2016, 06:26 PM
Dave Dave is offline
 
Join Date: May 2010
Posts: 2,583
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Try:
HTML Code:
div[data-widget-id="68"]{
   // CSS
}
Where 68 is the number of the identifier.
Reply With Quote
  #4  
Old 02-06-2016, 06:39 PM
DemOnstar's Avatar
DemOnstar DemOnstar is offline
 
Join Date: Dec 2012
Posts: 859
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Dave View Post
Try:
HTML Code:
div[data-widget-id="68"]{
   // CSS
}
Where 68 is the number of the identifier.
How does that fit around?

Code:
.canvas-layout-container .canvas-widget [data-widget-id="68"]{
????
Reply With Quote
  #5  
Old 02-06-2016, 06:49 PM
Dave Dave is offline
 
Join Date: May 2010
Posts: 2,583
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

That part is not necessary.

Example.. this will give you access to the header of the block:
HTML Code:
div[data-widget-id="68"] .widget-header{
  //
}
And this to the content:
HTML Code:
div[data-widget-id="68"] .widget-content{
  //
}
And that way you can style the individual blocks.
Reply With Quote
Благодарность от:
shimei
  #6  
Old 02-06-2016, 07:00 PM
DemOnstar's Avatar
DemOnstar DemOnstar is offline
 
Join Date: Dec 2012
Posts: 859
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Dave View Post
That part is not necessary.

Example.. this will give you access to the header of the block:
HTML Code:
div[data-widget-id="68"] .widget-header{
  //
}
And this to the content:
HTML Code:
div[data-widget-id="68"] .widget-content{
  //
}
And that way you can style the individual blocks.
Sorry Dave.
Thanks for your time but I'm just not getting this. . .
The stage I am at now is as follows.

Code:
div[data-widget-id="215"] .widget-header{
	// position:fixed;
}
But not seeing it. . .
Reply With Quote
  #7  
Old 02-06-2016, 07:13 PM
Dave Dave is offline
 
Join Date: May 2010
Posts: 2,583
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Well you don't literally have to put "//" in there, that was just a placeholder.

HTML Code:
div[data-widget-id="215"] .widget-header{
   position:fixed;
}
Reply With Quote
  #8  
Old 02-06-2016, 07:20 PM
DemOnstar's Avatar
DemOnstar DemOnstar is offline
 
Join Date: Dec 2012
Posts: 859
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Dave View Post
Well you don't literally have to put "//" in there, that was just a placeholder.

HTML Code:
div[data-widget-id="215"] .widget-header{
   position:fixed;
}
I tried it both ways. . .and still not getting anything. . .

Code:
div[data-widget-id="215"] .widget-header{
    position:fixed;
}
div[data-widget-id="215"] .widget-content{
     position:fixed;
}
But still just seeing this. .

Code:
.canvas-layout-container .canvas-widget {
    background: transparent none repeat scroll 0 0;
}
--------------- Added [DATE]1454796032[/DATE] at [TIME]1454796032[/TIME] ---------------

Quote:
Originally Posted by shimei View Post
Interested in learning how. I see that the widget number is displayed in this case it is #widget_168
You have any luck with this?
Reply With Quote
  #9  
Old 02-06-2016, 08:18 PM
Dave Dave is offline
 
Join Date: May 2010
Posts: 2,583
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

What exactly are you trying to accomplish? Trying to make it a fixed block?
Reply With Quote
  #10  
Old 02-06-2016, 08:40 PM
DemOnstar's Avatar
DemOnstar DemOnstar is offline
 
Join Date: Dec 2012
Posts: 859
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Dave View Post
What exactly are you trying to accomplish? Trying to make it a fixed block?
That is exactly what I want to create. . .

What I am trying to achieve is a block that is static whilst the rest of the page scrolls either under and behind it or to it's side. Similarly to we have in the admin cp.
The ideal would be a block that sits at the top of the page and the thread and .b-post__body { scrolls beneath it.
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:05 PM.


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.04491 seconds
  • Memory Usage 2,263KB
  • 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
  • (5)bbcode_code
  • (8)bbcode_html
  • (5)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (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
  • (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_postinfo_query
  • fetch_postinfo
  • 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
  • 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
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete