miceandpen
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Ignite] Removing Published byHi HonestTherapy, you want to look for content.php line 63-65 the div class “excerpt-meta-top” block can be removed and no authoring/date information will appear anymore.
Forum: Themes and Templates
In reply to: change color of menu navHi misterfancy, it looks like the responsive media queries for Tablets (landscape) < 960px are getting picked up by desktop screens as well, so it’s picking up your hover setting further down in the CSS file. To fix you also need to change #mainnav-menu li.menu-item:hover a background color setting further down in the CSS file on line 1222 after the @media only screen and (max-width: 60em) media query for tablets.
Forum: Themes and Templates
In reply to: [Fifteen] Remove Search/archives/metaHi Steve, there are multiple ways to remove what is called the “sidebar” section of the theme. It sounds like you just want to remove it completely, so you want to find a sidebar.php in your theme files and just remove the whole “secondary” div and everything in between. (<div id=”secondary”>…</div>). Then you’ll need to change the class of your primary div to “col-md-12”. It is currently “col-mid-8”. Not sure which theme page will let you find this unless I get a list of all the PHP files. Alternatively you can just use CSS to hide #secondary and change the width of .col-md-8.
Forum: Themes and Templates
In reply to: [Theme: Rockband] Problem changing logo size in Rockband ThemeHi Steve, your logo is an image with class=”logo” so you can change the size of the logo by adding the following to the CSS:
img.logo { width: [INSERT DESIRED WIDTH]; height: [INSERT DESIRED HEIGHT] }
You’ve got a responsive template, so make sure you adjust the size for Desktop, Tablet, and Phone in all the different places.
Forum: Themes and Templates
In reply to: [i-transform] Slider Background ColorHi alxscan, if you tried editing the background color in the main CSS file and it doesn’t work, that means you’ve already chosen one of their available color schemes at least once when you were trying out the theme (i.e. green, purple, yellow etc.). This injected a CSS file from the color_scheme folder which will override color definitions in the main CSS file. Either you figure out which color theme you already selected that is overriding the main CSS or you change all of them to the color you want. The CSS element you want to change is .ibanner. Hope this helps.