Hi ! How can I style the options page for my new theme ? Are there any tutorials on this topic ?
Thanks
Would appreciate help .
- Microlancer Beta Tester
- Sold between 250 000 and 1 000 000 dollars
- Author was Featured
- Item was Featured
- Has been a member for 4-5 years
- Author had a File in an Envato Bundle
- Referred between 200 and 499 users
- Author had a Free File of the Month
You should be able to style it with CSS just as you would with any other file
I know that im able to style it with css, but where do i put the css code ?
Someone ?
- Author had a Free File of the Month
- Bought between 50 and 99 items
- Exclusive Author
- Has been a member for 4-5 years
- Referred between 10 and 49 users
- Sold between 10 000 and 50 000 dollars
You need to add a hook to admin head (with add_action). And make the function echo the “link rel=...” to your css file.
It will be like this:
add_action('admin_head', 'your_function');
You need to add a hook to admin head (with add_action). And make the function echo the “link rel=...” to your css file.
It will be like this: add_action('admin_head', 'your_function');
Thanks 
