Tagged Questions
0
votes
0answers
16 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 ...
1
vote
1answer
177 views
Admin Panel pagination link styles
Whenever I write plugins that use Admin Panels, I include some form of pagination using the paginate_links method and I have always been able to style them in a nice way using the suggestions on this ...
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. ...
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 ...