Editing my Edit Mode
PermalinkWhen I hit edit mode all of the red-tape edit blocks pile up. However, hitting them still let's me edit content, it's just their positioning I can't figure out how to control.
Thanks for the help!
Joel
if ($c->isEditMode()) { echo 'style="position:relative;"'; }
Or any style that fixes it when you are in edit mode. You may have to play around with it a bit. CSS can be a tricky bastard. :-)
Thanks again!
Joel
how do i make a global style sheet only for edit mode so i can define the positioning of the blocks to stay the same in edit mode?
any help's appreciated! thanks
But if you want to include a style sheet,
within your header add
<?php
if($c->isEditMode()){
//include your css file here
//I would copy the css file call from the header and then place below, //I dont have it in front of me so can not remember the code
//to do this so here is the default stylesheet include?>
<link rel="stylesheet" href="/path_to_css" type="text/css" />
<?php
}
?>
anyone here who play online casino games such as poker, blackjack,baccarat, roulette, and slot machines?
If you are looking for great online casino game sites well i would recommend you JBET POKER and WILD JUNGLE CASINO. JBET Poker allows a variety of cash games and daily tournaments sure to suits any player. while Wild Jungle CAsino offer over 60 traditional Online casino games and you can ever play Progressives to be in to win Massive Jackpots!
Both site provide a 24/7 customer support team so you can contact or e-mail them to solve any issue or answer any questions that you may have.
To visit JBET POKER go to: jbetpoker.com
To visit WILD JUNGLE CASINO go to: wjc888.com
I did it like this:
<?php
if($c->isEditMode()){
$path = $this->getThemePath();
echo "<link rel=\"stylesheet\" type=\"text/css\" href=\"{$path}/css/stylesheet_name.css\" >";
}
?>
Joel