mantis64
Forum Replies Created
-
Forum: Plugins
In reply to: [Max Mega Menu] Divi custom MenuHi Luke,
It was a full width custom menu. Anyway looking around I found a solution. I edited the functions.php and added the following at the bottom.
function remove_theme_location($args) {
if ( isset( $args[‘theme_location’] ) ) {
unset( $args[‘theme_location’] );
}return $args;
}
add_filter(‘et_fullwidth_menu_args’, ‘remove_theme_location’);Many thanks for your help
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Highlighting a selection of RowsAll resolved.
Thank you!
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Highlighting a selection of RowsThanks Tobias, worked great.
So pleased with your great plugin and amazing support!
Thank you once again
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Highlighting a selection of RowsI just found out how to hide the columns with a shortcode, hide_columns=”1,2,3″ show_rows=”4,5,6″ /
However when I hide column 1 which has the hightlight, the highlight goes away
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Highlighting a selection of RowsHi Tobias,
Thanks so much for the quick reply and excellent support.
This has done what I need. However I’m having a little difficulty in hiding the hidden column. Here is my custom CSS
I want column 1 to be hidden however if I put a PX or % after the number it always disappears.
.tablepress-spec-header .column-1 {
width: 0;
font-weight: bold;
}.tablepress-spec-header .column-2 {
width: 40%;
font-weight: bold;
}.tablepress-spec-header .column-3 {
width: 60%;
}