Advertisement
firoze

SMOF ব্যবহার Template এর background Change করা |

Dec 3rd, 2014
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.78 KB | None | 0 0
  1. First bg image গুল images folder এর ভিতর bg folder নামে folder এর ভিতর রাখতে হবে |
  2.  
  3. // Template Background  For SMOF
  4. $of_options[] = array(  "name"      => "Background BG",
  5.                         "type"      => "heading"
  6.                 );
  7. $of_options[] = array(  "name"      => "Background Images",
  8.                         "desc"      => "Select a background pattern.",
  9.                         "id"        => "custom_bg",
  10.                         "std"       => $bg_images_url."bg0.png",
  11.                         "type"      => "tiles",
  12.                         "options"   => $bg_images,
  13.                 ); 
  14.  
  15.  
  16. <!--Background Image this code have to show before head-->
  17.         <?php global $data; ?>
  18.         <?php if($data['custom_bg']): ?>
  19.         <style type="text/css">
  20.         body{background-image:url( <?php  echo $data['custom_bg']; ?> );background-repeat:repeat;}
  21.         </style>
  22.          <?php endif;?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement