简体   繁体   中英

How to set random color box in wordpress theme

Good Morning, I am working on my wordpress web-page, which is made of image-boxes and they are changed to one-color background boxes with text on hover. See example here: http://www.top-news.6f.sk/ . I want make this boxes to have random color background or random color from list of colors. I found out that the color of these boxes isnt set in .css file but its probably generated by some php file or function. (If u inspect source code you cand find that there is generated some css style inside, so if i put this code in my stelysheet.css it still wont work because it is overrided. Can you give me any clues where to find a code where can i change the color of these boxes? Then I would be able to rewrite it to random color. Thanks

If you want to create a random background color

 <?php $hex = dechex(rand(0,255)) . dechex(rand(0,255)) . dechex(rand(0,255)); ?>

and then you'd use the following in your body tag:

<body BGCOLOR=“#<?php echo($hex);?>”>

If you want to override inline styles, in your style.css, use !important.

Similar to :

background-color: #fff !important;

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM