Be Theme University Template Problem

Hello,

we are trying to use the University template, but we have some problems which we couldn't fix.

1) in both footer and other places of the site, we use tables to list images with their links. but when we hover into each column or row, that column or row's background color is changing. but we dont want to change the background when we hover into the table. please see the screenshot below.

image

as you can see the top row's background color is changing when we hover into any image. but we dont want this hover effect on tables. how can we do that?

2) also as you can see on the same screenshot, there are borders on the table. but we use border="0" in the table code. but still it is showing border. how can we remove the border?

3) in your university demo on http://themes.muffingroup.com/be/university/ there is a tab field on the index page. contains "engineering", "business", "law" etc. we also are using this tabs. but in our site, the tabs are not seen as centered as on your demo. on our site, the tabs are on left side. please see below screenshot:

image

how can we make the tabs centered?

thanks

Comments

  • Hi,

    1) This was described on http://forum.muffingroup.com/betheme/discussion/453/how-to-make-a-plain-table

    2) The url we gave you in point 1 should help in this case as well.

    3) The section where tabs are, got departments ID set and also under Custom CSS section we used below css:
    #departments .ui-tabs .ui-tabs-nav {
        text-align: center;
    }
    #departments .ui-tabs .ui-tabs-nav li {
        display: inline-block;
        float: none;
    }
    #departments .ui-tabs .ui-tabs-panel {
        overflow: hidden;
        padding: 35px 20px;
    }
    #departments .ui-tabs .ui-tabs-panel .column {
        margin-bottom: 25px;
    }
    #departments .ui-tabs .ui-tabs-panel > .column {
        margin-bottom: 0;
    }
Sign In or Register to comment.