Jump to content

rayminator

Members
  • Posts

    5
  • Joined

  • Last visited

Profile Information

  • First Name
    raymond
  • Last Name
    green

rayminator's Achievements

Newbie

Newbie (1/14)

0

Reputation

1

Community Answers

  1. hi there i can help you out a bit. create a css file and name it mobile-device.css copy and paste then upload it to hopopup css folder @media only screen and (max-device-width: 480px) { #mask { position: absolute; left:0; top:0; z-index:9000; display:none; background-image:url(../img/bg.jpg); background-repeat:no-repeat; background-color:#0060ff; border-radius: 5px; } #boxes .window { position: absolute; border:0px solid rgba(0,0,0,0); -webkit-border-radius:5px; -moz-border-radius:5px; border-radius:5px; -moz-box-shadow:0 0 18px rgba(0,0,0,0.5); box-shadow:0 0 18px rgba(0,0,0,0.5); z-index:9999; opacity:0.9; filter:alpha(opacity=80); } #boxes #dialog { width:930px; height:540px; } #bouton_submit{ background-image:url(../img/bt_entrer1.png); width: 200px; height:40px; border:none; font-family: Arial, Helvetica, sans-serif; font-size: 16px; font-style: normal; font-weight: bold; color: #FFF; } #bouton_submit:hover{ background-image:url(../img/bt_entrer2.png); color: #000; } #bouton_exit{ background-image:url(../img/bt_sortir1.png); width: 200px; height:40px; border:none; font-family: Arial, Helvetica, sans-serif; font-size: 16px; font-style: normal; font-weight: bold; color: #FFF; } #bouton_exit:hover{ background-image:url(../img/bt_sortir2.png); color: #F00; } } then open hopopup.tpl add this to the top <link rel="stylesheet" type="text/css" media="only screen and (max-device-width: 480px)" href="mobile-device.css" /> now open hopopup.php find $this->context->controller->addCSS(($this->_path).'css/boxes.css', 'all'); add after $this->context->controller->addCSS(($this->_path).'css/mobile-device.css', 'all'); hope this help you out a bit i forgot to mention that you have to play around with the css codes
  2. a simple question how to put the CMS information block into the footer i have tried to put it in the footer in the admin Modules and Services Positions hooks but it only goes on the home page displayhome (homepage content) but nothing else i also look on here to find out how but nothing came up on search
  3. don't forget clear your cache in the admin Advanced Parameters Performance by hitting the easier logo the top right hand
  4. thanks for sharing but it doesn't block the whole page here how to fix it open /hopopup/css find #boxes .window { position: absolute; border:0px solid rgba(0,0,0,0); -webkit-border-radius:5px; -moz-border-radius:5px; border-radius:5px; -moz-box-shadow:0 0 18px rgba(0,0,0,0.5); box-shadow:0 0 18px rgba(0,0,0,0.5); z-index:9999; } change to #boxes .window { position: fixed; border:0px solid rgba(0,0,0,0); -webkit-border-radius:5px; -moz-border-radius:5px; border-radius:5px; -moz-box-shadow:0 0 18px rgba(0,0,0,0.5); box-shadow:0 0 18px rgba(0,0,0,0.5); z-index:9999; } find #mask { position:absolute; left:0; top:0; z-index:9000; display:none; background-image:url(../img/bg.jpg); background-repeat:no-repeat; background-color:#0060ff; } change to #mask { position:fixed; left:0; top:0; z-index:9000; display:none; background-image:url(../img/bg.jpg); background-repeat:no-repeat; background-color:#0060ff; }
  5. how can i move the Attachments above more info this is what i would like to do i hope i put this in the right place i found out how to do it but thanks anyways
×
×
  • Create New...