Title: Few Problems
Last modified: August 22, 2016

---

# Few Problems

 *  [Mack3m Mark](https://wordpress.org/support/users/mack3m-mark/)
 * (@mack3m-mark)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/few-problems-3/)
 * Hi im wondering if anyone can help me!
 * Doing a website for my works [http://www.afuseboardspecialist.com](http://www.afuseboardspecialist.com)
 * I’m trying to get rid of the page tab thing which is over my banner photo and
   on every page … how do I get rid of it?
 * I’m also trying to change the brown colour border lines to the same colour blue
   as my logo?
 * Also when I clock onto a page say ‘Services’ I don’t want the big writing at 
   the top, but still want it on the main menu … I’ve lost the home button of the
   list as deleted it of main page? What’s the proper way to sort this.
 * Any help hugely appreciated!!
 * Cheers
 * Mark

Viewing 7 replies - 1 through 7 (of 7 total)

 *  Moderator [Kathryn Presner](https://wordpress.org/support/users/zoonini/)
 * (@zoonini)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/few-problems-3/#post-5514026)
 * Hi Mark, I’ll answer your questions separately.
 * > I’m trying to get rid of the page tab thing which is over my banner photo and
   > on every page … how do I get rid of it?
 * Do you mean the part I’ve circled in red here?
 * [⌊Services Tel 07833 259653⌉⌊Services Tel 07833 259653⌉[
 * If so, adding this custom CSS should remove it:
 *     ```
       .hentry.type-page:before {
           content: none;
       }
       ```
   
 * Don’t edit the theme files directly, otherwise your changes will be overwritten
   whenever the theme is updated.
 * An easy way to add custom CSS is to install the [Jetpack plugin](http://jetpack.me/)
   and activate the [Custom CSS](http://jetpack.me/support/custom-css/) module. 
   You’ll then add your custom CSS in the new stylesheet editor that’ll appear in
   your dashboard, under Appearance > Edit CSS.
 * As alternatives, you could either install a [standalone custom CSS plugin,](http://wordpress.org/plugins/search.php?q=custom+css)
   or create a [child theme.](http://codex.wordpress.org/Child_Themes)
 *  Moderator [Kathryn Presner](https://wordpress.org/support/users/zoonini/)
 * (@zoonini)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/few-problems-3/#post-5514027)
 * > I’m also trying to change the brown colour border lines to the same colour 
   > blue as my logo?
 * Using a browser inspector like the one built into Chrome or Firefox, you can 
   find all the elements with that brownish-orange colour so you can then override
   the shade to your desired blue.
 * For example, the CSS for the horizontal line in the left sidebar and at the top
   of each page and single post is found in the **.site-branding:after** and **.
   hentry:after** portions of the CSS, respectively. You can override it in your
   custom CSS plugin or child theme with something like this:
 *     ```
       .site-branding:after, .hentry:after {
           border-top: 8px solid #6791c2;
       }
       ```
   
 * You can choose whatever shade of blue you like using a colour picker, like this
   one: [http://www.colorpicker.com/](http://www.colorpicker.com/)
 *  Moderator [Kathryn Presner](https://wordpress.org/support/users/zoonini/)
 * (@zoonini)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/few-problems-3/#post-5514029)
 * > Also when I clock onto a page say ‘Services’ I don’t want the big writing at
   > the top, but still want it on the main menu … I’ve lost the home button of 
   > the list as deleted it of main page? What’s the proper way to sort this.
 * You can hide all page headings like this:
 *     ```
       .page .entry-title {
         display: none;
       }
       ```
   
 * I’d also suggest you create a custom menu for better control over your menu display.
   Here’s a guide on how to do that:
    [http://en.support.wordpress.com/menus/](http://en.support.wordpress.com/menus/)
 * It’s from WordPress.com, but the instructions are the same for self-hosted sites.
 *  Thread Starter [Mack3m Mark](https://wordpress.org/support/users/mack3m-mark/)
 * (@mack3m-mark)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/few-problems-3/#post-5514043)
 * Thank you so much Kathryn for all your help. When I get five minutes ill sit 
   down and have a go. Do I have to fInd the existing codes in css editor and edit
   them or can I put a new code in and over ride it?
 * Thankyou in advance 🙂
 *  Moderator [Kathryn Presner](https://wordpress.org/support/users/zoonini/)
 * (@zoonini)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/few-problems-3/#post-5514046)
 * > Do I have to fInd the existing codes in css editor and edit them or can I put
   > a new code in and over ride it?
 * No, definitely don’t do it that way or all your changes will be erased when you
   update the theme. 🙂
 * I explained the two recommended ways to make these CSS changes in this post above:
 * [https://wordpress.org/support/topic/few-problems-3?replies=5#post-6264052](https://wordpress.org/support/topic/few-problems-3?replies=5#post-6264052)
 *  Thread Starter [Mack3m Mark](https://wordpress.org/support/users/mack3m-mark/)
 * (@mack3m-mark)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/few-problems-3/#post-5514103)
 * Perfect thankyou,
 * One last thing … on my ‘Services’ Page, I want it so you can see main titles 
   on page i.e full rewires, partial rewires , once click on them … drops down and
   see more information/ description of that service!
 * Also how would I set up the contact form on contact us page? Ive installed but
   when try email myself, not coming through to my inbox
 *  Moderator [Kathryn Presner](https://wordpress.org/support/users/zoonini/)
 * (@zoonini)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/few-problems-3/#post-5514129)
 * > One last thing … on my ‘Services’ Page, I want it so you can see main titles
   > on page i.e full rewires, partial rewires , once click on them … drops down
   > and see more information/ description of that service!
 * That sounds like you want “jump links” or internal anchor links. Here’s a guide
   to doing that – it’s not a theme-specific function.
 * [http://en.support.wordpress.com/splitting-content/page-jumps/](http://en.support.wordpress.com/splitting-content/page-jumps/)
 * >  Also how would I set up the contact form on contact us page? Ive installed
   > but when try email myself, not coming through to my inbox
 * Since that’s not functionality built into the theme, you’ll need to troubleshoot
   that either with your email host or try asking in the plugin’s support forum.

Viewing 7 replies - 1 through 7 (of 7 total)

The topic ‘Few Problems’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/fictive/1.1.2/screenshot.png)
 * Fictive
 * [Support Threads](https://wordpress.org/support/theme/fictive/)
 * [Active Topics](https://wordpress.org/support/theme/fictive/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/fictive/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/fictive/reviews/)

 * 7 replies
 * 2 participants
 * Last reply from: [Kathryn Presner](https://wordpress.org/support/users/zoonini/)
 * Last activity: [11 years, 5 months ago](https://wordpress.org/support/topic/few-problems-3/#post-5514129)
 * Status: not resolved