BabyFaceWeb
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [StrapVert] How to make page text not bold and not italicI’m at your site and see the footer is no longer italic. Can you please share a page url to show where the pages or posts are not properly formatting the <p>?
Forum: Themes and Templates
In reply to: [Catch Box] Change style of "Posted by…" and "Posted in…"You have to be specific about where you want this to apply…it wouldn’t be wise to apply this “everything”. But if you wanted to you could use the “body” tag and “!important” but that would be crazy ??
instead of “.entry-meta” use “body”
or switch “.entry-date” or “by-author” if you want to create the same mods for those specific classes.
Best!
SteveForum: Themes and Templates
In reply to: [Twenty Fourteen] Homepage looks wrong unless /wpIt’s hard to know from this end… without seeing your setup. But have you setup your WP installation in the root of your host site? What do you know about the /wp/ subdirectory being used? I’m suspecting you’ve got some unusual setting where you are pointing the WP installation to the root of the host but have the WP site actually setup in the /wp/ subfolder.
It doesn’t look too tragic..but definitely needs to get sorted.
Have you set this up yourself? If so, go into the General/Settings and check the url’s there. Also go to Settings/Permalinks and set your preference and save again (click the button to set permalinks).
Forum: Themes and Templates
In reply to: [Catch Box] Change style of "Posted by…" and "Posted in…"Hi Marc,
the entry meta covers the entire div. That’s at:
.entry-meta { color: #666; clear: both; font-size: 12px; line-height: 18px; }
You can also modify specifically:
.entry-date and .by-author if you want those bits to be uniquely styled.
Best!
SteveForum: Themes and Templates
In reply to: [StrapVert] How to make page text not bold and not italicThank you!
to override the <p> tag’s use of “oblique”, use this CSS globally in your child theme or custom css box.
p { font-style: normal!important; }
Best!
SteveForum: Themes and Templates
In reply to: [Highwind] Resize Site TaglineHi Kind,
here is the css…change em value to whatever you need. Add this css to your child theme or custom css box..site-description { font-size: 1em; }
If you want to share your site url, we can help you further as well with any layout and design issues.
Best!
SteveForum: Themes and Templates
In reply to: [Fruitful] disable sidebarHi Largum
can we have your site url please, to provide you the detailed css.Best!
SteveForum: Themes and Templates
In reply to: [StrapVert] How to make page text not bold and not italicHi Jurri,
need your site url please.Best!
SteveForum: Themes and Templates
In reply to: [Twenty Fourteen] Homepage looks wrong unless /wpIt appears that one of the critical stylesheets is only being called form the /wp setup.
What have you done with your .htaccess file that allows the site to be called from both the /wp and the root domain?<link rel=’stylesheet’ id=’cntctfrm_stylesheet-css’ href=’https://vaarucycles.com/wp/wp-content/plugins/contact-form-plugin/css/style.css?ver=3.9.1′ type=’text/css’ media=’all’ />
Forum: Themes and Templates
In reply to: [MesoColumn] Change footer font color.fbottom a { color: red!important; }
Forum: Themes and Templates
In reply to: Different image on each pageSure you could…you just have to add the meta boxes in theme customizer to match up images with the proper page ids. This would be a great project to sub out if you haven’t done it before.
Best!
steveForum: Themes and Templates
In reply to: Need Main Menu with drop down capabilityThat theme is not designed to have child menu items in the primary menu… mainly because of that cool red highlighter underneath.
So, your best solution is to limit the use of primary parent links…and then add submenu navigation to a sidebar menu or a menu on each page.
There really isn’t a great solution beyond that, because making the font’s smaller wouldn’t look good, and the child menu items would destroy the function of the menu.
You could kill the function of the primary menu highlighting and restructure it but…ugh… trying to build a corvette from a bmw…
Forum: Themes and Templates
In reply to: Different image on each pageyes… but you don’t need the print part… just declare the html for the image like:
<?php if (is_page(1)) { ?>
<img src=”https://something.jpg”></img>
<?php else if …and so on
Forum: Themes and Templates
In reply to: [MesoColumn] Change footer font colorYou need to add the following to override your site’s CSS (for some reason it has !important added)
So do:
.fbottom {
color: red!important;
}You may also try this free plugin to override your css if you’re not using a child theme already ??
https://www.ads-software.com/plugins/simple-custom-css/
Cheers!
SpenceForum: Themes and Templates
In reply to: [Stargazer] Remove side barHi Guys,
this is pretty easy.If you want to do this globally, you can simply add:
#sidebar-primary {display:none;} #content {width:100%}
If you want it on a page by page basis, just add the body class for the particular page, such as:
body.layout-2c-l #sidebar-primary {display:none;} body.layout-2c-l #content {width:100%}
If you need further help, please let me know ??
Best!
Steve