Tagged Questions
0
votes
0answers
18 views
Changing Style of Inputs in Admin
I think that I am missing something...
I am trying to customize the look and feel of the admin section of my site. A lot of my style are working as expected, but when I try to change the height of ...
0
votes
0answers
26 views
Unregister default admin styles from specific admin page
I'm trying the following code in theme's function.php:
function mypage_remove_scripts() {
wp_deregister_style( 'wp-admin' );
}
add_action( 'mypage', 'mypage_remove_scripts' );
But that doesn't ...
1
vote
2answers
102 views
Customize my custom taxonomy table in Admin panel
I've registered a new taxonomy for my custom post type, and now I'm trying to edit the taxonomy table.
I've successfully removed the description column but I can't figure it out how to edit column ...
1
vote
2answers
104 views
How to Display Frontend CSS for Administrator only
I've been asked to restyle the css of a WordPress website frontend.
The website can't be in maintenance mode while working on it as it must stay up and running all the time.
I assume that if I can add ...
1
vote
2answers
58 views
Why are my styles being applied to the admin area?
All my enqueued styles are applied to the back-end as well. I have never encountered this behavior before.
Here's my code:
wp_register_style( 'main-styles', get_stylesheet_directory_uri() . ...
1
vote
1answer
97 views
Fixed layout for admin section
I would like to customize the layout of the admin section of WordPress.
The thing is, whatever the layout I create, I'm very dependent of the default "fluid" layout of the admin. By fluid, I mean: ...
1
vote
1answer
122 views
Adding another “Add Post” button to admin
I would like another "Add post" button in the admin except I am going to call it "Add voucher". It will run specific plugins that add post will not. However that is irrelivant, all I need to know it ...
4
votes
3answers
452 views
How to fix admin stylesheet muck-up? [closed]
I have no idea what's going on here.. running the latest version, just logged in and I find my admin area looking like this:
To me it looks like it's missing some/many styles and in load-styles.php ...
1
vote
2answers
713 views
Wordpress admin stylesheet
Is there a way to override the styles in the admin in my theme?
I don't want to touch the admin style sheet if I don't have to.
I just want to make a column bigger in my admin, but also, to do it in ...
2
votes
3answers
1k views
How do I load a CSS style into WordPress admin area only?
I'm trying to load a CSS file for my WordPress post area, but having no luck. I have read over the wp_enqueue_style function and came up with the code below, but it doesn't load up. Is there a tag or ...
0
votes
3answers
82 views
Exclude stylesheet from admin
I have been using the following function to enqueue some CSS to my theme. However, they are used in the admin area as well:
wp_enqueue_style(...)
I don't want them to be used in the admin area. ...
10
votes
3answers
3k views
What are the standard admin CSS id/class tags?
Is there a list of WordPress CSS id/classes that i can use to build plugin option screens that look and feel more like a normal WordPress option page? i have found some through serendipity but it ...
5
votes
3answers
265 views
How to make a theme with more than one CSS file?
I've made my first theme and now I want to create different "profiles". These profiles are just independent CSS files that user can try. The point is, how to make these files to allow users to choose ...
3
votes
2answers
661 views
Modify CSS via Theme Control Panel
Hi to all I'm trying to create an advanced control panel for my first Wordpress template but I'm not able to add a function that I will need.
The function that I'm trying to add is the possibility to ...
0
votes
2answers
1k views
How do you modify CSS files via admin panel?
All theme styles are in style.css file.
Let's say first line looks like:
body {
background-color: #fff;
}
Now, I've created an option in admin panel named body_bg. User types #000 there and I ...
2
votes
3answers
212 views
Wordpress Plugin Look & Feel
Is there a list of the ID's and Classes I can give HTML elements in the admin panel in order to closely mimic the wordpress look and feel?
0
votes
2answers
2k views
Adding CSS to custom post type admin page causes error
I have this bit of code in my Meteor Slides plugin that loads a stylesheet on the admin pages of just the slides custom post type:
add_action('admin_head', 'meteorslides_admin_css');
function ...
