WebArtz - The Web Design Forum
Welcome to WebArtz, Guest!

WebArtz is a nice place for discussions related to web designing and coding. We help our members to code their own website templates with HTML and CSS. We give them advice on various issues.

To know more about WebArtz Forum, visit the About Us page.

At the moment, you are viewing the forum as a guest. As a guest you can't make post and participate in discussions. You need to register and become a member of the forum. Click the register link below and become a part of this forum.

Thank You


You are not connected. Please login or register

View previous topic View next topic Go down  Message [Page 1 of 1]

1 About Forumotion :: CSS :: Invision Version on Sun Feb 21, 2010 9:57 am

Russel


WebArtz Moderator
WebArtz Moderator
Hello. I am using invision version and as we all know. templates cant be edited.

1. how do i bold the topic title in the topics list page. Where can i find the CSS code inside the AP > Display > colors > css.

Screenshot:


2. How do i change the background color for announcement. The scrolling one.

Screenshot:


3. How do i change the color by not affecting other fonts below the forum or anything. The [b] view your posts, view unanswered posts.

Screenshot:


4. On the forum page, i want when the forum hovered, the color will change. How?

Screenshot:


Thanks in advance.



Last edited by Russelâ„¢ on Mon Feb 22, 2010 7:19 am; edited 1 time in total


_________________





No Support Via PM
http://facebook.com/russelpuge

Sanket


Administrator
Administrator
1) Add this to your css.
Code:
.topictitle {
   font-weight: bold !important;
   }


4) Add this to your css.
Code:
 .forum-name a:hover {
color: #FF0080;
   }

Change the color code as you like.

http://www.webartzforum.com

Russel


WebArtz Moderator
WebArtz Moderator
to number 4. not the forum name. the background.


_________________





No Support Via PM
http://facebook.com/russelpuge

Sanket


Administrator
Administrator
I doubt if the background color changes in invision.

http://www.webartzforum.com

ankillien


Administrator
Administrator
Bold topic title...

Code:
.topictitle {
font-weight : bold;
}


Change announcement background...

Code:
#fa_ticker_block .module .box-content {
background : red;
}


Change link color on top...

Code:
#userlinks ul li a {
color : red;
}



Change background color on hover over forum row...

Code:
table.ipbtable tbody tr:hover td {
background : pink;
}

Sanket


Administrator
Administrator
Oh, on invision its possible? Never really worked with inivison forums.

http://www.webartzforum.com

Russel


WebArtz Moderator
WebArtz Moderator
oh thanks. ankillien. it works. anyway. second question. how do i change the background color?


_________________





No Support Via PM
http://facebook.com/russelpuge

ankillien


Administrator
Administrator
Russelâ„¢ wrote:oh thanks. ankillien. it works. anyway. second question. how do i change the background color?


Sorry, I don't understand which background you are referring to.
are you talking about the body background?
here is the code...

Code:
body {
background : red;
}

Russel


WebArtz Moderator
WebArtz Moderator
no. the background of the hovered one ive asked to you.


_________________





No Support Via PM
http://facebook.com/russelpuge

ankillien


Administrator
Administrator
I've already given code for it above.

Code:
table.ipbtable tbody tr:hover td {
background : pink;
}

Russel


WebArtz Moderator
WebArtz Moderator
^ i got it. but i want to change the background of that hovered background. for example. when i am not hovering it. the background it white. and i want to change the background in blue before hovering it to other color. gets?


_________________





No Support Via PM
http://facebook.com/russelpuge

ankillien


Administrator
Administrator
So, you want white background as default (when not hovering) and blue when hovering, right?

Code:
table.ipbtable tbody tr td {
background : white !important;
}
table.ipbtable tbody tr:hover td {
background : blue !important;
}

Russel


WebArtz Moderator
WebArtz Moderator
thank you very much sir. it works. last question. how about the line between each category? how do i change the color?


_________________





No Support Via PM
http://facebook.com/russelpuge

ankillien


Administrator
Administrator
Try this code please...

Code:
table.ipbtable tbody tr td {
border-bottom : 1px solid red !important;
}


I'm not sure if it will work exactly the way you want.

Russel


WebArtz Moderator
WebArtz Moderator
Thank dude. pardon, the line am i asking is the horizontal one in between of title, topics, posts and number of posts


_________________





No Support Via PM
http://facebook.com/russelpuge

ankillien


Administrator
Administrator
This topic is marked as solved, so I'll lock it.

Locked

View previous topic View next topic Back to top  Message [Page 1 of 1]

Permissions in this forum:
You cannot reply to topics in this forum