• Page 1 of 1
  • 1
Forum moderator: bigblog  
uCoz Community » For Webmasters » Design Customization » Can't find this area! (Just want to know where can I find this to change it.)
Can't find this area!
Elexy
Posts: 93
Reputation: 2

Message # 1 | 7:23 AM
I noticed that my "Stamps" images to the left side (they are the small pictures supporting each forum section) are squished to a size of 60x60. The problem I am having is that I can't find where I can change that size to the original size which is the stamp picture of 62x61... So I want to know where in the CSS/Template can I find the following thing I placed a red square on to the far right because I can't find it:

Proud Ucoz Member Since 2013
Warning: Do not trust Zayaan Ibrahim with projects, he will scam you by overpricing!
♥ http://rawtrex.com/ ♥
Post edited by Elexy - Saturday, 2014-08-16, 7:24 AM
Paradox
Old Guard
Posts: 3284
Reputation: 145

Message # 2 | 8:23 AM
Elexy, those styles are directly applied to the forum images themselves individually. It's not applied through the use of a CSS selector within a document. smile My best suggestion to change this would be to use jQuery to select the images and clear/adjust the styling applied to them. Try this code:

Code
<script type="text/javascript">
$(document).ready(function(){
$(".forumIcoTd img").css("max-height", "80px");
$(".forumIcoTd img").css("max-width", "80px");
});   
</script>


Hope this helps. happy

Jack of all trades in development, design, strategy.
Working as a Support Engineer.
Been here for 13 years and counting.
Eriko
Pokémon Master
Posts: 962
Reputation: 34

Message # 3 | 9:56 AM
You can also try !important. Example:
Code
.forumIcoTd img{max-width:80px !important;max-height:80px !important;}
Post edited by Eriko - Sunday, 2014-08-17, 10:26 AM
Elexy
Posts: 93
Reputation: 2

Message # 4 | 5:43 AM
Quote Paradox ()
<script type="text/javascript">
$(document).ready(function(){
$(".forumIcoTd img").css("max-height", "80px");
$(".forumIcoTd img").css("max-width", "80px");
});
</script>

^ Where do I add that code at?.. Same question for this:
Quote Eriko ()
.forumIcoTd img{max-width:80px !important;}

Proud Ucoz Member Since 2013
Warning: Do not trust Zayaan Ibrahim with projects, he will scam you by overpricing!
♥ http://rawtrex.com/ ♥
Post edited by Elexy - Sunday, 2014-08-17, 5:43 AM
Eriko
Pokémon Master
Posts: 962
Reputation: 34

Message # 5 | 6:15 AM
Whoopsie. Don't put both of them. Paradox shared a javascript solution, mine's a CSS one. You can put the javascript on the HTML Document. You can put the CSS one on the Stylesheet file.
Elexy
Posts: 93
Reputation: 2

Message # 6 | 9:51 AM
Quote Eriko ()
Whoopsie. Don't put both of them. Paradox shared a javascript solution, mine's a CSS one. You can put the javascript on the HTML Document. You can put the CSS one on the Stylesheet file.


Thanks guys!
biggrin
Attachments: 2077903.jpg (33.2 Kb)

Proud Ucoz Member Since 2013
Warning: Do not trust Zayaan Ibrahim with projects, he will scam you by overpricing!
♥ http://rawtrex.com/ ♥
Post edited by Elexy - Monday, 2014-08-18, 9:52 AM
uCoz Community » For Webmasters » Design Customization » Can't find this area! (Just want to know where can I find this to change it.)
  • Page 1 of 1
  • 1
Search: