batharoy
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Matheson] Stop border from appearing on hoverIf you mean the main navigation menu.
.nav-justified > li > a { border: none; }http://codex.wordpress.org/Forum_Welcome#Commercial_Products
We don’t have access to that theme, you will need to seek support from the site that provided you with the theme.Forum: Themes and Templates
In reply to: [GREEN EYE] Change the Header Background Color#header-fpage, #iebanner { background: #ff0000 }Forum: Themes and Templates
In reply to: [Customizr] how to add the WP search bar In the NavbarSee if this will work.
#searchform { max-width: 300px; } .searchform input[type="text"] { width: 50%; }Forum: Themes and Templates
In reply to: Sidebar shows scrollbarsI think it’s because of the iframes, 300px is really too narrow, have you thought about other ways to integrate your social media, such as the plugins supplied on WP.org?
#content { width: 75%; } #sidebar { width: 25%; margin-left: 75%; }Use a custom css plugin or child-theme as edits to the original files will be erased if the theme is updated.
Forum: Themes and Templates
In reply to: [Adamos] FIrst timer trying to figure out sliderForum: Themes and Templates
In reply to: [Sixteen] Increase space above menu.site-branding { display: none; } #site-navigation { margin-top: 160px; }Forum: Themes and Templates
In reply to: [Tiny Forge] Remove HOME from header picture.entry-title { display: none; }Be sure to use a custom css plugin or child-theme as any edits to the original files will be erased if the theme is updated.
Forum: Themes and Templates
In reply to: CSS Style SheetYou are encouraged to create a child-theme or use a custom css plugin.
If you edit the themes original files your changes will be erased during any theme updates.Forum: Themes and Templates
In reply to: Sidebar shows scrollbarsWARNING
site is loaded with pop-up advertisementsForum: Themes and Templates
In reply to: [Suffusion] Can't resize the page.meta-position-left-pullout .entry-container { padding-left: 0; }Forum: Themes and Templates
In reply to: [Sixteen] Increase space above menuYou can use a little css to make the Title & Description invisible.
.site-title a { color: transparent; } .site-description { color: transparent; }Forum: Themes and Templates
In reply to: Recommendations for a basic blogging theme for a beginner?Twenty Ten is a good basic theme to learn the ins & outs, however it is a fixed width theme, not responsive (mobile friendly).
If you do want a responsive theme Twenty Twelve is installed with WordPress.Forum: Themes and Templates
In reply to: [zeeVision] Does Removing Byline Require Pro?These can be hidden with css.
.postmeta { display: none; } .postinfo { display: none; }