batharoy
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Possible to have a theme for online book or novel?Forum: Themes and Templates
In reply to: [Sugar and Spice] Sticky Nav BarFor the grey lines:
nav#main-nav > ul:before, nav#main-nav > ul:after { background: none; }
For the menu there is a pure css way but would require the menu be moved to the top of the page.
#nav-wrapper { position: fixed; top: 0; left: 0; width: 100%; background: #fff; z-index: 9999; } #header-wrap { margin-top: 50px; }
Forum: Themes and Templates
In reply to: [Twenty Twelve] ad to the right of the site titleIt is possible but requires a child-theme as you would need to edit the header.php file.
Forum: Themes and Templates
In reply to: [Whispy] Is Whispy considered a "Responsive" theme?Whispy is whats called a fixed width theme. If the browser goes below 995px in width you end up with a horizontal scrollbar.
Forum: Themes and Templates
In reply to: [Sugar and Spice] ribbonChild-themes are easy to set up and offer great flexibility, they are pretty much required for any php file edits. Since you are only changing css styles you could also use a custom css plugin if that seems easier.
Forum: Themes and Templates
In reply to: [Sugar and Spice] removing outline of main container#page:before, #page:after, #header, #main { background-image: none; }
Forum: Themes and Templates
In reply to: [Vantage] Change Color of bottom border on Blog pageTry this:
article.post { border-bottom: none };
Forum: Themes and Templates
In reply to: [Twenty Twelve] Search widget in headerThis would need edits to the header.php file and requires a child-theme.
Forum: Themes and Templates
In reply to: HELP!! GET RID OF Proudly powered by WordPress??Try
.site-info
instead of generator.Forum: Themes and Templates
In reply to: removing author in Liquorice themeThis can be done with
.date{display: none;}
As you can guess by the selector it will hide the date aswell.
If you want only the name you will need to copy the single.php to the child-theme and remove the following bit of code.by <?php the_author(); ?>
Would be advisable for me to make the jump to a more recent theme?
The theme has only been updated once in over 2 years, that was 9 months ago, your call.
Forum: Themes and Templates
In reply to: Target Page Oxygen ThemeWhen looking at the page source, the body tag has a class of
singular-page-566
.
Have you tried targeting that?Forum: Themes and Templates
In reply to: my wordpress theme is a hot mess, can someone help?Try applying the background to the masthead instead of the hgroup.
#masthead { background: url('https://www.atm-411.com/wp-content/uploads/2014/02/atm-triton-banner.jpg') no-repeat transparent; background-position: top right; border: none; }
Forum: Themes and Templates
In reply to: [Restaurateur] Website changes when I logoutWhat exactly is not right?
Can you link screenshots so we have an idea of what your looking to do?Forum: Themes and Templates
In reply to: CSS code not changing thingsI can see that the entry content is blue as you specified.
Your html output does not have any selector ofa.home.link
What exactly is it you want red?Forum: Themes and Templates
In reply to: [Alexandria] FYI Logo for all.site-branding h1, .site-branding h2 { margin-left: 40px; }