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

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]

Russel

Russel
Moderator
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:About Forumotion :: CSS :: Invision Version K12pts


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

Screenshot:About Forumotion :: CSS :: Invision Version Fw3n5x


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: About Forumotion :: CSS :: Invision Version 3467z2a


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

Screenshot: About Forumotion :: CSS :: Invision Version 2whm58l


Thanks in advance.



Last edited by Russel™ on Mon Feb 22, 2010 8:49 am; edited 1 time in total

https://www.twitter.com/russeltubo

Sanket

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

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

https://www.twitter.com/russeltubo

Sanket

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

http://www.webartzforum.com

ankillien

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

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

http://www.webartzforum.com

Russel

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

https://www.twitter.com/russeltubo

ankillien

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

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

https://www.twitter.com/russeltubo

ankillien

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

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

Russel

Russel
Moderator
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?

https://www.twitter.com/russeltubo

ankillien

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

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

https://www.twitter.com/russeltubo

ankillien

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

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

https://www.twitter.com/russeltubo

ankillien

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

Locked

Sponsored content


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