Oh no! Where's the JavaScript?
Your Web browser does not have JavaScript enabled or does not support JavaScript. Please enable JavaScript on your Web browser to properly view this Web site, or upgrade to a Web browser that does support JavaScript.
Not a member yet? Click here to register.
Forgot Password?

Tabbed panel

Asked Modified Viewed 21,266 times
K
Kevin Maschke
K
<3 PHP-Fusion
  • Member, joined since
  • Contributed 160 posts on the community forums.
  • Started 25 threads in the forums
  • Started this discussions
asked
Member

Hi, I need help making a tabbed panel, with 2 or more tabs. I'm speaking of a side panel.

I mean, a sidepanel with tabs and each tab displays diferent content (basically each tab shows a list of articles in a specific article category).

How can this be done?

And, would it be possible to make the tabs appear in the sidepanel header? I mean, The side panel header should be divided into 2... If not, a normal panel with tabs in it..

Merged on May 30 2011 at 23:38:31:
Here are 2 examples of tabs. Would it be possible to implement them into a panel?

http://www.sunsean.com/idTabs/#advanced

http://www.sohtanaka.com/web-design/simple-tabs-w-css-jquery/
Edited by Kevin Maschke on 31-05-2011 00:38,
0 replies

52 posts

K
Kevin Maschke
K
<3 PHP-Fusion
  • Member, joined since
  • Contributed 160 posts on the community forums.
  • Started 25 threads in the forums
  • Started this discussions
answered
Member

Quote

Ryan Stewart wrote:

Try running the Javascript after the tab content, if that fails, try loading it in the themes/templates/headers.php


?>
<script type="text/javascript">
    $(document).ready(function() {
        $('#tabs').tabs();
    });
</script>
<?php


You can try using echo with it, but in my past experience it's never worked for me, just do the above.


I've tried adding it before the
[syntaxhighlighter brush=php,first-line=1,highlight=0,collapse=false,html-script=false]closeside();[/syntaxhighlighter]

But that did not work. And adding it to header.php did also not change anything.

EDIT: Tried adding it after each tab content. But still No change.
Edited by Kevin Maschke on 06-06-2011 17:25,
0 replies
M
Mangee
M
Mangee 10
Mangee's Conversions

Convert
  • Senior Member, joined since
  • Contributed 242 posts on the community forums.
  • Started 30 threads in the forums
answered
Senior Member

Just before render page try this

if(function_exists('add_to_head')){
add_to_head("<script type='text/javascript' src='".THEME."xxxxxx.js'></script>");
}


xxxxxx.js is your javascript code in a js file

$(document).ready(function() {
        $('#tabs').tabs();
    });
0 replies
K
Kevin Maschke
K
<3 PHP-Fusion
  • Member, joined since
  • Contributed 160 posts on the community forums.
  • Started 25 threads in the forums
  • Started this discussions
answered
Member

Quote

Mangee wrote:

Just before render page try this

if(function_exists('add_to_head')){
add_to_head("<script type='text/javascript' src='".THEME."xxxxxx.js'></script>");
}


xxxxxx.js is your javascript code in a js file

$(document).ready(function() {
        $('#tabs').tabs();
    });



Added it just bejore:
[syntaxhighlighter brush=php,first-line=1,highlight=0,collapse=false,html-script=false]function render_page($license=false) {[/syntaxhighlighter]

But the panel on my website still looks the same as in the screen-shots I uploaded some posts above. No change.

EDIT: Just a note, the "tab funcion" works, I mean, clicking on a tab name it "takes" me to the paragraph that is in that tab. The only problem is the design, there are no tabs displayed, just 3 links and under them the paragraphs. What I need solved are the tabs...

Merged on Jun 07 2011 at 09:06:45:
Any idea?
Edited by Kevin Maschke on 07-06-2011 10:06,
0 replies
R
Ryan Stewart
R
img682.imageshack.us/img682/7469/logo2vod.png

Expect stuff from me soon (:
  • Junior Member, joined since
  • Contributed 42 posts on the community forums.
  • Started 6 threads in the forums
answered
Junior Member

Here you are, the jQuery library used with PHP Fusion is missing the CSS files. You can replace the one i've added with anyone from the jQuery UI website ;)

Hope I helped.
Ryan Stewart attached the following file:
tabbed_panel.zip [No information available / 396 Downloads]
0 replies
K
Kevin Maschke
K
<3 PHP-Fusion
  • Member, joined since
  • Contributed 160 posts on the community forums.
  • Started 25 threads in the forums
  • Started this discussions
answered
Member

Quote

Ryan Stewart wrote:

Here you are, the jQuery library used with PHP Fusion is missing the CSS files. You can replace the one i've added with anyone from the jQuery UI website ;)

Hope I helped.



:D

WOOOO!!! Thaanks alooot!!! That was the problem!! That made the solution!! Thanks alooot!!!!
0 replies
R
Ryan Stewart
R
img682.imageshack.us/img682/7469/logo2vod.png

Expect stuff from me soon (:
  • Junior Member, joined since
  • Contributed 42 posts on the community forums.
  • Started 6 threads in the forums
answered
Junior Member

Quote

Kevin Maschke wrote:
:D

WOOOO!!! Thaanks alooot!!! That was the problem!! That made the solution!! Thanks alooot!!!!


No problem. Glad I could help you out :)
0 replies
K
Kevin Maschke
K
<3 PHP-Fusion
  • Member, joined since
  • Contributed 160 posts on the community forums.
  • Started 25 threads in the forums
  • Started this discussions
answered
Member

Hey!

I just kept playing around with the finally working tabs, and I wondered if it where possible to input news and other stuff. I thought about a center content panel as news page. I mean, instead of the normal news page, a panel with tabs. One tab for each news category, for example.

I just tried this on a custom page:
[syntaxhighlighter brush=php,first-line=1,highlight=0,collapse=false,html-script=false]
<?php

/* Tabbed Panel,
* By Ryan Stewart
*/


if (!defined("IN_FUSION"wink) { die("Access Denied"wink; }

echo "<div id='tabs'>\n";
echo "<ul>\n";
echo "<li><a href='#tabs-1'>NEWS</a></li>\n";
echo "<li><a href='#tabs-2'>OTHER</a></li>\n";
echo "</ul>\n";

//START OF TAB1 CONTENT
echo "<div id='tabs-1'>\n";
//echo "<strong>Tab 1</strong>\n";


// Predefined variables, do not edit these values
$i = 0;

// Number of news displayed
$items_per_page = $settings['newsperpage'];

add_to_title($locale['global_200'].$locale['global_077']);

if (!isset($_GET['readmore']) || !isnum($_GET['readmore'])) {
$rows = dbcount(
"(news_id)",
DB_NEWS,
groupaccess('news_visibility'wink." AND (news_start='0'||news_start<=".time()."wink
AND (news_end='0'||news_end>=".time()."wink
AND news_draft='0'"
);
if (!isset($_GET['rowstart']) || !isnum($_GET['rowstart'])) { $_GET['rowstart'] = 0; }
if ($rows) {
$result = dbquery(
"SELECT tn.*, tc.*, tu.user_id, tu.user_name, tu.user_status
FROM ".DB_NEWS." tn
LEFT JOIN ".DB_USERS." tu ON tn.news_name=tu.user_id
LEFT JOIN ".DB_NEWS_CATS." tc ON tn.news_cat=tc.news_cat_id
WHERE ".groupaccess('news_visibility'wink." AND (news_start='0'||news_start<=".time()."wink
AND (news_end='0'||news_end>=".time()."wink AND news_draft='0'
GROUP BY news_id
ORDER BY news_sticky DESC, news_datestamp DESC LIMIT ".$_GET['rowstart'].",".$items_per_page
);
$numrows = dbrows($result);
while ($data = dbarray($result)) {
$i++;
$comments = dbcount("(comment_id)", DB_COMMENTS." WHERE comment_type='N' AND comment_hidden='0' AND comment_item_id='".$data['news_id']."'"wink;
$news_cat_image = "";
$news_subject = "<a name='news_".$data['news_id']."' id='news_".$data['news_id']."'></a>".stripslashes($data['news_subject']);
$news_cat_image = "<a href='".($settings['news_image_link'] == 0 ? "news_cats.php?cat_id=".$data['news_cat']
: FUSION_SELF."?readmore=".$data['news_id'] )."'>";
if ($data['news_image_t2'] && $settings['news_image_frontpage'] == 0) {
$news_cat_image .= "<img src='".IMAGES_N_T.$data['news_image_t2']."' alt='".$data['news_subject']."' class='news-category' /></a>";
} elseif ($data['news_cat_image']) {
$news_cat_image .= "<img src='".get_image("nc_".$data['news_cat_name'])."' alt='".$data['news_cat_name']."' class='news-category' /></a>";
} else {
$news_cat_image = "";
}
$news_news = $data['news_breaks'] == "y" ? nl2br(stripslashes($data['news_news'])) : stripslashes($data['news_news']);

$news_info = array(
"news_id" => $data['news_id'],
"user_id" => $data['user_id'],
"user_name" => $data['user_name'],
"user_status" => $data['user_status'],
"news_date" => $data['news_datestamp'],
"cat_id" => $data['news_cat'],
"cat_name" => $data['news_cat_name'],
"cat_image" => $news_cat_image,
"news_subject" => $data['news_subject'],
"news_ext" => $data['news_extended'] ? "y" : "n",
"news_reads" => $data['news_reads'],
"news_comments" => $comments,
"news_allow_comments" => $data['news_allow_comments'],
"news_sticky" => $data['news_sticky']
);

echo "<!--news_prepost_".$i."-->\n";
render_news($news_subject, $news_news, $news_info);
}
echo "<!--sub_news_idx-->\n";
if ($rows > $items_per_page) echo "<div align='center' style=';margin-top:5px;'>\n".makepagenav($_GET['rowstart'],$items_per_page,$rows,3)."\n</div>\n";
} else {
opentable($locale['global_077']);
echo "<div style='text-align:center'><br />\n".$locale['global_078']."<br /><br />\n</div>\n";
closetable();
}
} else {
$result = dbquery(
"SELECT tn.*, tc.*, tu.user_id, tu.user_name, tu.user_status FROM ".DB_NEWS." tn
LEFT JOIN ".DB_USERS." tu ON tn.news_name=tu.user_id
LEFT JOIN ".DB_NEWS_CATS." tc ON tn.news_cat=tc.news_cat_id
WHERE ".groupaccess('news_visibility'wink." AND news_id='".$_GET['readmore']."' AND news_draft='0'
LIMIT 1"
);
if (dbrows($result)) {
include INCLUDES."comments_include.php";
include INCLUDES."ratings_include.php";
$data = dbarray($result);
if (!isset($_POST['post_comment']) && !isset($_POST['post_rating'])) {
$result2 = dbquery("UPDATE ".DB_NEWS." SET news_reads=news_reads+1 WHERE news_id='".$_GET['readmore']."'"wink;
$data['news_reads']++;
}
$news_cat_image = "";
$news_subject = $data['news_subject'];
if ($data['news_image_t1'] && $settings['news_image_readmore'] == "0"wink {
$img_size = @getimagesize(IMAGES_N.$data['news_image']);
$news_cat_image = "<a href=\"javascript:;\" onclick=\"window.open('".IMAGES_N.$data['news_image']."','','scrollbars=yes,toolbar=no,status=no,resizable=yes,width=".($img_size[0]+20).",height=".($img_size[1]+20)."'wink\"><img src='".IMAGES_N_T.$data['news_image_t1']."' alt='".$data['news_subject']."' class='news-category' /></a>";
} elseif ($data['news_cat_image']) {
$news_cat_image = "<a href='news_cats.php?cat_id=".$data['news_cat']."'><img src='".get_image("nc_".$data['news_cat_name'])."' alt='".$data['news_cat_name']."' class='news-category' /></a>";
}
$news_news = stripslashes($data['news_extended'] ? $data['news_extended'] : $data['news_news']);
if ($data['news_breaks'] == "y"wink { $news_news = nl2br($news_news); }
$news_info = array(
"news_id" => $data['news_id'],
"user_id" => $data['user_id'],
"user_name" => $data['user_name'],
"user_status" => $data['user_status'],
"news_date" => $data['news_datestamp'],
"cat_id" => $data['news_cat'],
"cat_name" => $data['news_cat_name'],
"cat_image" => $news_cat_image,
"news_subject" => $data['news_subject'],
"news_ext" => "n",
"news_reads" => $data['news_reads'],
"news_comments" => dbcount("(comment_id)", DB_COMMENTS, "comment_type='N' AND comment_item_id='".$data['news_id']."' AND comment_hidden='0'"wink,
"news_allow_comments" => $data['news_allow_comments'],
"news_sticky" => $data['news_sticky']
);
add_to_title($locale['global_201'].$news_subject);
echo "<!--news_pre_readmore-->";
render_news($news_subject, $news_news, $news_info);
echo "<!--news_sub_readmore-->";
if ($data['news_allow_comments']) { showcomments("N", DB_NEWS, "news_id", $_GET['readmore'], FUSION_SELF."?readmore=".$_GET['readmore']); }
if ($data['news_allow_ratings']) { showratings("N", $_GET['readmore'], FUSION_SELF."?readmore=".$_GET['readmore']); }
} else {
redirect(FUSION_SELF);
}
}

echo "</div>\n";
//END OF TAB1 CONTENT

//START OF TAB2 CONTENT
echo "<div id='tabs-2'>\n";
echo "<em>Tab 2</em>\n";

//CONTENT OF TAB 2 - LIST OF ARTICLES IN ARTICLE_CAT 2 - GAME LIST


echo "</div>\n";
//END OF TAB2 CONTENT

echo "</div>\n";
?>
<link rel="stylesheet" type="text/css" href="<?= INCLUDES ?>/jquery/css/ui-lightness/jquery-ui-1.8.13.custom.css" />
<script type="text/javascript" src="<?= INCLUDES ?>jquery/jquery-ui.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('#tabs'wink.tabs();
});
</script>

[/syntaxhighlighter]


And this is the result:

LINK TO IMAGE:
http://img191.imageshack.us/img191/9445/tabsnews.png


It should be possible to use it this way, right? The only problem this way is that the links to "news.php?readmore"... are not working correctly.


Oh and another question. How can I use various different tabs on single page? I mean, now I got the tabbed panel, and when I just use the tabbed panel, it works great, but if I want to add another different tabbed panel, just one works. I think it is because they use the same jquery variables... But, ¿how can I solve that?

Here is an live example:

http://www.km.hostei.com/php-fusion/news.php - The side tabbed panel works perfectly
http://www.km.hostei.com/php-fusion/viewpage.php?page_id=2 - The side panel does not work any more.

¿why?¿what's the solution?


Thanks in advance!
0 replies
R
Ryan Stewart
R
img682.imageshack.us/img682/7469/logo2vod.png

Expect stuff from me soon (:
  • Junior Member, joined since
  • Contributed 42 posts on the community forums.
  • Started 6 threads in the forums
answered
Junior Member

A simple answer to your jQuery tabs not displaying properly is simple. You are currently running the jQuery-UI javascript file in the panel, and then redeclaring it on your custom page. What you want to do is move the jQuery script from the bottom of the panel file, then add it to your themes/templates/headers.php (not sure if there's a function to do this).

Once you've done that simply remove the declaring of $('#tabs').tabs() on any page you are using them on ;)
0 replies
K
Kevin Maschke
K
<3 PHP-Fusion
  • Member, joined since
  • Contributed 160 posts on the community forums.
  • Started 25 threads in the forums
  • Started this discussions
answered
Member

You mean put this:
<link rel="stylesheet" type="text/css" href="<?= INCLUDES ?>/jquery/css/ui-lightness/jquery-ui-1.8.13.custom.css" />
<script type="text/javascript" src="<?= INCLUDES ?>jquery/jquery-ui.js"></script>
<script type="text/javascript">
   $(document).ready(function() {
      $('#tabs').tabs();
   });
</script>



Into "themes/templates/header.php"

?


EDIT: Tried it and did not work..
0 replies
R
Ryan Stewart
R
img682.imageshack.us/img682/7469/logo2vod.png

Expect stuff from me soon (:
  • Junior Member, joined since
  • Contributed 42 posts on the community forums.
  • Started 6 threads in the forums
answered
Junior Member

Sorry my bad. You should know that an ID tag is a unique tag reference, and therefore cannot be called more than once to run tabs. An easy fix is to make your tabs a class.

So instead of:
<div id="tabs">


It would be:
<div class="tabs">


I would recommend make the class name a unique name which won't get confused with anything else. Remember to change the selector on the jQuery too!

So:
$('#tabs').tabs();


Would become:
$('.tabs').tabs();
0 replies
K
Kevin Maschke
K
<3 PHP-Fusion
  • Member, joined since
  • Contributed 160 posts on the community forums.
  • Started 25 threads in the forums
  • Started this discussions
answered
Member

So if I use

<div class="news_tabs">

with
$('.news_tabs').tabs();


In the news tabs code and

<div class="panel_tabs">

with
$('.panel_tabs').tabs();


In the side panel code it should work, right?
0 replies
R
Ryan Stewart
R
img682.imageshack.us/img682/7469/logo2vod.png

Expect stuff from me soon (:
  • Junior Member, joined since
  • Contributed 42 posts on the community forums.
  • Started 6 threads in the forums
answered
Junior Member

Well you don't really need to have 2 selectors, you can use the same one for both.
0 replies
K
Kevin Maschke
K
<3 PHP-Fusion
  • Member, joined since
  • Contributed 160 posts on the community forums.
  • Started 25 threads in the forums
  • Started this discussions
answered
Member

Tested

<div class='news_tabs'>

with
$('.news_tabs').tabs();


On a custom page and it does not work... No tabs are shown. Just two links with tab contents under them.
0 replies
R
Ryan Stewart
R
img682.imageshack.us/img682/7469/logo2vod.png

Expect stuff from me soon (:
  • Junior Member, joined since
  • Contributed 42 posts on the community forums.
  • Started 6 threads in the forums
answered
Junior Member

Can you post your headers.php file where you are declaring the tabs? It's working fine for me on my test website.
0 replies
K
Kevin Maschke
K
<3 PHP-Fusion
  • Member, joined since
  • Contributed 160 posts on the community forums.
  • Started 25 threads in the forums
  • Started this discussions
answered
Member

Quote

Ryan Stewart wrote:

Can you post your headers.php file where you are declaring the tabs? It's working fine for me on my test website.



Not necessary! Thanks alot for your help! but I've manged to solve it smile - USING IDs

Here's what I've done:

TABBED SIDE PANEL
INFO: In side panel each tab contains a list of articles.

[syntaxhighlighter brush=php,first-line=1,highlight=0,collapse=false,html-script=false]
<?php
/* Tabbed Panel,
* By Ryan Stewart
* MOD BY KEVIN MASCHKE
*/

if (!defined("IN_FUSION"wink) { die("Access Denied"wink; }

//SETTING ID TO "list"
echo "<div id='list'>\n";
echo "<ul>\n";
echo "<li><a href='#tabs-1'>TAB 1</a></li>\n";
echo "<li><a href='#tabs-2'>TAB 2</a></li>\n";
echo "</ul>\n";

//START OF TAB1
echo "<div id='tabs-1'>\n";
//CONTENT
echo "<strong>Tab 1</strong>\n";
echo "</div>\n";
//END OF TAB1

//START OF TAB2
echo "<div id='tabs-2'>\n";
//CONTENT
echo "<em>Tab 2</em>\n";
echo "</div>\n";
//END OF TAB2

echo "</div>\n";
?>
[/syntaxhighlighter]



TABBED CENTER/NEWS PANEL
INFO: Each tab contains news

[syntaxhighlighter brush=php,first-line=1,highlight=0,collapse=false,html-script=false]
<?php

/* Tabbed Panel,
* By Ryan Stewart
* MOD BY KEVIN MASCHKE
*/


if (!defined("IN_FUSION"wink) { die("Access Denied"wink; }
//SETTING ID TO "news"
echo "<div id='news'>\n";
echo "<ul>\n";
echo "<li><a href='#news1'>NEWS</a></li>\n";
echo "<li><a href='#news2'>OTHER</a></li>\n";
echo "</ul>\n";

//START OF TAB1
//NOTE THAT THE TAB CONTENT ID IS "news1"
echo "<div id='news1'>\n";
//TAB CONTENT
echo "<strong>Tab 1</strong>\n";
echo "</div>\n";
//END OF TAB1

//START OF TAB2 CONTENT
//NOTE THAT THE TAB CONTENT ID IS "news2"
echo "<div id='news2'>\n";
//TAB CONTENT
echo "<em>Tab 2</em>\n";
echo "</div>\n";
//END OF TAB2
echo "</div>\n";
?>
[/syntaxhighlighter]



And then editing:

/themes/templates/header.php

At the bottom, just after:

[syntaxhighlighter brush=php,first-line=1,highlight=0,collapse=false,html-script=false]require_once THEMES."templates/panels.php";
ob_start();
?>[/syntaxhighlighter]
I added:
[syntaxhighlighter brush=javascript,first-line=1,highlight=0,collapse=false,html-script=false]<link rel="stylesheet" type="text/css" href="<?= INCLUDES ?>/jquery/css/ui-lightness/jquery-ui-1.8.13.custom.css" />
<script type="text/javascript" src="<?= INCLUDES ?>jquery/jquery-ui.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('#list'wink.tabs();
$('#news'wink.tabs();
});
</script>[/syntaxhighlighter]

NOTE: #list defines the side panel tabs, while #news defines the center/news panel tabs.

Note that to work correctly, the tab ids of the panels need to be different. Each panel needs its own tab ids.

You can see it working here: http://www.km.hostei.com/php-fusion/viewpage.php?page_id=2
0 replies
R
Ryan Stewart
R
img682.imageshack.us/img682/7469/logo2vod.png

Expect stuff from me soon (:
  • Junior Member, joined since
  • Contributed 42 posts on the community forums.
  • Started 6 threads in the forums
answered
Junior Member

I know that each tab declaration needs a unique ID, but with a single class tab declaration it would work everywhere. You could have easily done:
$('.my-tabs').tabs();


Then when showing tabs do:

<div class='my-tabs'>
<ul>
<li><a href="#tabs-1">Tabs 1</a></li>
</ul>

<div id="tabs-1">My first tab.</div>
</div>


The way you are doing it right now is pretty stupid if you ask me as you are loading it up once, then going and loading it again.
0 replies
K
Kevin Maschke
K
<3 PHP-Fusion
  • Member, joined since
  • Contributed 160 posts on the community forums.
  • Started 25 threads in the forums
  • Started this discussions
answered
Member

Quote

Ryan Stewart wrote:

I know that each tab declaration needs a unique ID, but with a single class tab declaration it would work everywhere. You could have easily done:
$('.my-tabs').tabs();


Then when showing tabs do:

<div class='my-tabs'>
<ul>
<li><a href="#tabs-1">Tabs 1</a></li>
</ul>

<div id="tabs-1">My first tab.</div>
</div>


The way you are doing it right now is pretty stupid if you ask me as you are loading it up once, then going and loading it again.


Oh.. I was thinking I finally made something right :(

Ok... I've changed to what you've said.

Using in header.php
$('.tabs').tabs();


And for panels:

<div class='tabs'>
</div>


Just using in one panel


<div class='tabs'>
<ul>
<li><a href="#news1">news1</a></li>
<li><a href="#news2">news2</a></li>
</ul>
<div id="news1">My first tab.</div>
<div id="news2">My second tab.</div>
</div>


and in the other one:


<div class='tabs'>
<ul>
<li><a href="#anime">anime</a></li>
<li><a href="#games">games</a></li>
</ul>
<div id="anime">anime tab</div>
<div id="games">game tab</div>
</div>




This way it works correctly. ¿And this way you say I load it up just once? If yes, it is better for my site, right?

SEE IT HERE:

http://www.km.hostei.com/php-fusion/viewpage.php?page_id=2
0 replies
R
Ryan Stewart
R
img682.imageshack.us/img682/7469/logo2vod.png

Expect stuff from me soon (:
  • Junior Member, joined since
  • Contributed 42 posts on the community forums.
  • Started 6 threads in the forums
answered
Junior Member

Perfect :)
If you need any help with any more of this don't hesitate to contact me.
0 replies
K
Kevin Maschke
K
<3 PHP-Fusion
  • Member, joined since
  • Contributed 160 posts on the community forums.
  • Started 25 threads in the forums
  • Started this discussions
answered
Member

Quote

Ryan Stewart wrote:

Perfect :)
If you need any help with any more of this don't hesitate to contact me.


Thanks alot!

If I could add Experts in this forum I'd add you! :D

Merged on Jun 08 2011 at 15:37:44:
Oh... Yes, there's a thing you could (if you want/can) help me... the css.

I attached a rar with the Jquery CSS I'm using, and my themes CSS...

Could you help me modify Jquery CSS to make tabs look more as the theme?
Edited by Kevin Maschke on 08-06-2011 16:37,
Kevin Maschke attached the following file:
css.rar [No information available / 274 Downloads]
0 replies
R
Ryan Stewart
R
img682.imageshack.us/img682/7469/logo2vod.png

Expect stuff from me soon (:
  • Junior Member, joined since
  • Contributed 42 posts on the community forums.
  • Started 6 threads in the forums
answered
Junior Member

I sure can. If you send me your whole theme in a ZIP file via PM I can do that for you later on. :)

Merged on Jun 08 2011 at 15:57:49:
How is this for you?
Edited by Ryan Stewart on 08-06-2011 16:58,
Ryan Stewart attached the following file:
jquery-ui-1813customcss.zip [No information available / 313 Downloads]
0 replies

Labels

None yet

Statistics

  • Views 0 views
  • Posts 52 posts
  • Votes 0 votes
  • Topic users 8 members

8 participants

C
C
Craig 14
  • Fusioneer, joined since
  • Contributed 4,462 posts on the community forums.
  • Started 212 threads in the forums
K
K
<3 PHP-Fusion
  • Member, joined since
  • Contributed 160 posts on the community forums.
  • Started 25 threads in the forums
  • Started this discussions
M
M
Mangee 10
Mangee's Conversions

Convert
  • Senior Member, joined since
  • Contributed 242 posts on the community forums.
  • Started 30 threads in the forums
D
D
  • Member, joined since
  • Contributed 161 posts on the community forums.
  • Started 18 threads in the forums
K
K
  • Junior Member, joined since
  • Contributed 38 posts on the community forums.
  • Started 11 threads in the forums
L
L
Lippke 10
- Lippke
  • Member, joined since
  • Contributed 168 posts on the community forums.
  • Started 35 threads in the forums
R
R
img682.imageshack.us/img682/7469/logo2vod.png

Expect stuff from me soon (:
  • Junior Member, joined since
  • Contributed 42 posts on the community forums.
  • Started 6 threads in the forums
G
G
  • Senior Member, joined since
  • Contributed 266 posts on the community forums.
  • Started 6 threads in the forums

Notifications

Track thread

You are not receiving notifications from this thread.

Related Questions

Not yet