How can i remove the "search icon" on this theme? - wordpress

I want to remove the search icon/the magnifying glass icon on this theme (broadnews by AF themes).
How will I do it without messing up the others?
I did nothing and was afraid to ruin the theme.

In your child theme in functions.php add the following line.
remove_action('broadnews_load_search_form', 'broadnews_load_search_form_section');

You can try it to hide with css:
.af-search-wrap {
display:none;
}

Related

Wordpress blog page title font not appropriate

[Link for blog][1]
In the above Blog page how can i increase font for title of every post?
Add following in style.css. Appearance->Editor->style.css
.entry-title
{
font-size:30px;
}
Find Class/ID of element you want to change with tool like Element Inspector of firefox/chrome then add appropriate styling to your element.

How to remove wordpress top menu bar?

How to remove this wordpress top bar ?
I am doing it by css, is it right ?
#wpadminbar {
display: none !important;
}
You can do this with PHP, add this to your functions.php file
show_admin_bar(false);
Although ideally this should be done in a child theme as will be undone when the theme is updated.
I don't think there is anything wrong with doing it the way you are already doing it with CSS though.

How to hide certain tags in wordpress with css?

Is there any way to hide certain tags in post info/meta via css ? Something like #tag-id { display:none }
Your CSS may be overwritten by the theme CSS file. Try with the following css:
display:none !important;
If it doesn't work, please provide the URL of your website.
Cheers,
Dam

How can I change the colors (dropdown arrows, dropdown menus, etc.) of the main navigation bar of the WooThemes Resort Theme?

I seem to find the right code in layout.css, but when I add that to the style.css and change the colors nothing seems to happen, even after clearing cache. What is the recommended way to change the main nav bar colors for the Resort Theme? http://www.notketchup.com Thanks!!
Your WordPress theme's style.css needs a higher priority than the layout.css stylesheet.
In your theme's header.php, try moving the link to your style.css document to the line immediately before </head>
Failing that, try adding !important to your styles - e.g.
#myelement {
color: #888 !important;
}

WordPress Theme Customizer toolbar CSS

How can I update the default WordPress Theme Customizer toolbar CSS so that I could for example change the text color from the default black.
The default hook to add admin CSS does not seem to work here add_action('admin_head', 'custom_admin_css');
So for example the #theme-description id, could be change to another color but how?!
*I actually want to add some CSS to a custom option but rather than pasting lots of confusing code I am trying to keep the question simple, so If I can change the CSS for this then I can create CSS for what I need.
Many thanks
You could try the customize_controls_print_styles hook I think:
function theme_customizer_css() { ?>
<style>
// Custom Styles in here
</style>
<?php }
add_action( 'customize_controls_print_styles', 'theme_customizer_css' );

Resources