Blank page after editing "Theme Functions (functions.php)"
-
Hi Guys,
I seem to have done something to my “Theme Functions (functions.php)” page. After trying to round the corners of my header menu with the CSS code below (which did not work), I now have a completely blank page and I’m now unable to revert to my site through any other means. The only way I’m currently able to go to my dash board is by using the back button. Once on the dash board, anything else I click results in a blank page. HELP!!!
The CSS code I used was:
menu ul li:last-child a, .menu ul li:last-child:hover{
-webkit-border-top-right-radius: 10px !important;
-webkit-border-bottom-right-radius: 10px !important;
-moz-border-top-right-radius: 10px !important;
-moz-border-bottom-right-radius: 10px !important;
border-top-right-radius: 10px !important;
border-bottom-right-radius: 10px !important;
}
.menu ul li:first-child a, .menu ul li:first-child:hover{
-webkit-border-top-left-radius: 10px !important;
-webkit-border-bottom-left-radius: 10px !important;
-moz-border-top-left-radius: 10px !important;
-moz-border-bottom-left-radius: 10px !important;
border-top-left-radius: 10px !important;
border-bottom-left-radius: 10px !important;
}This code was placed at the position marked XXXXX below in the “Theme Functions (functions.php)” sheet. Although I have removed it I still get black pages throughout. HELP!!
// Theme Customizer Boilerplate
require( get_template_directory() . ‘/inc/customizer-boilerplate/customizer.php’ );XXXXXX
/*
* ==================================
* Theme Customizer Boilerplate edits
* ==================================
*/
- The topic ‘Blank page after editing "Theme Functions (functions.php)"’ is closed to new replies.