View Full Version : Need Help in CSS Stying
vimarc
03-05-2013, 11:52 AM
I need your help in some css styling of theme...
1.Body background is white but no border : What will css style to ad border to body background.
2. Forum/subforum Descriptions, rss feed icon, thread/post counting and last thread : Need help to add border for all.
3. Same above in point 2 looking add border in threadlists page.
4. Showthread page: Looking to give border for tools section where button/links for edit, reply, quote and reputation are available.
I tried to find div class but failed..Pl provide your suggestion
Lynne
03-05-2013, 06:27 PM
We would need a link to the pages (and a login, if needed to view the image) and images of exactly what you want.
vimarc
03-06-2013, 03:51 AM
We would need a link to the pages (and a login, if needed to view the image) and images of exactly what you want.
No . I want css style to give border of black color but don't div class
Example:
#forumbit {
border 1px solid: #000000;
}
--------------- Added 1362590146 at 1362590146 ---------------
Can anyone help me in this css styling
Lynne
03-06-2013, 10:57 PM
People can't help with css issues without a link.
If you want CSS help but won't post a link, then go here - http://www.w3schools.com/
vimarc
03-07-2013, 01:18 PM
I want to put css in additional .css for border..
vimarc
03-10-2013, 07:02 AM
As i have not get any help here i am posting some pictures which gives you idea what exactly i m looking.
Lynne
03-10-2013, 05:22 PM
Those images help because I had a totally different idea of what you wanted from your description. Anyway, what you want to do isn't really possible with just CSS. If you look at the code, you have a mix of <div> and <ul> tags that make up each row. If you use firebug, you will see that these don't 'fill' the space from top to bottom, so you can't put a line there that goes from the top to the bottom. You would need to actually change the whole thing to use a table and then put borders on the cells of the table. Alternately, if those areas are fixed width, you may create a background that has the lines in it and then just apply the background to the whole row (if it's for the site in your signature, they are fixed width and that is probably going to be the easiest way for you to get what you want - a 1 px high background image that is transparent except a black box in a couple of places).
vimarc
03-10-2013, 08:38 PM
I think it is easy with css style. just need to use right div class and put left or right border... what do you think
Lynne
03-10-2013, 10:07 PM
I already told you what I thought. If you use firebug to view the areas, you will see that putting a right or left border will not create a line that goes from the top line to the bottom line. Like, try this and you will see what I mean:
.forumbit_post .forumrow .forumlastpost {
border-left: 1px solid black;
width: 23%;
}
vimarc
03-11-2013, 10:21 AM
Hi Thanks for reply.. Can you give me one example with image so that i can try to do this
Lynne
03-11-2013, 05:58 PM
I just gave you an example. Add that to your additional.css and you will see what I mean.
vimarc
03-12-2013, 12:33 PM
Hi
I need example with table code so i can give a try
Lynne
03-12-2013, 04:28 PM
I'm not going to translate the templates to tables - that would take a lot of time. You will need to do that yourself or hire someone to do it.
vimarc
03-13-2013, 11:00 AM
Hi i need only one example rest i will try to do myself
Lynne
03-13-2013, 06:15 PM
<table>
<tr><td> title here</td>
<td>threads/posts here</td>
<td>last post here</td>
</tr>
</table>
vimarc
03-14-2013, 07:45 AM
I think i have done it without tables...
--------------- Added 1363247418 at 1363247418 ---------------
It is possible to give background image for following code if yes pl let me know the code
<div class="forumrow table">
Lynne
03-14-2013, 05:26 PM
<div class="forumrow table" style="background:xxxxxxx;">
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.