|
|
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! |
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
|
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. 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. Jack of all trades in development, design, strategy.
Working as a Support Engineer. Been here for 13 years and counting. |
<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: 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
|
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! 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
|
| |||
| |||