Title: kitfreeman's Replies | WordPress.org

---

# kitfreeman

  [  ](https://wordpress.org/support/users/kitfreeman/)

 *   [Profile](https://wordpress.org/support/users/kitfreeman/)
 *   [Topics Started](https://wordpress.org/support/users/kitfreeman/topics/)
 *   [Replies Created](https://wordpress.org/support/users/kitfreeman/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/kitfreeman/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/kitfreeman/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/kitfreeman/engagements/)
 *   [Favorites](https://wordpress.org/support/users/kitfreeman/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 52 total)

1 [2](https://wordpress.org/support/users/kitfreeman/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/kitfreeman/replies/page/3/?output_format=md)
[4](https://wordpress.org/support/users/kitfreeman/replies/page/4/?output_format=md)
[→](https://wordpress.org/support/users/kitfreeman/replies/page/2/?output_format=md)

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Vantage] functions.php flagged as unsafe](https://wordpress.org/support/topic/functions-php-flagged-as-unsafe/)
 *  Thread Starter [kitfreeman](https://wordpress.org/support/users/kitfreeman/)
 * (@kitfreeman)
 * [9 months, 3 weeks ago](https://wordpress.org/support/topic/functions-php-flagged-as-unsafe/#post-18566650)
 * Thanks very much for the advice, Andrew. I was surprised to find that I’d gone
   into the pharmaceutical business — and in French too! I’ve run various scans,
   but nothing else was flagged as unsafe, so I’m hopeful that I’m OK now.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Vantage] functions.php flagged as unsafe](https://wordpress.org/support/topic/functions-php-flagged-as-unsafe/)
 *  Thread Starter [kitfreeman](https://wordpress.org/support/users/kitfreeman/)
 * (@kitfreeman)
 * [9 months, 3 weeks ago](https://wordpress.org/support/topic/functions-php-flagged-as-unsafe/#post-18566501)
 * Dear Andrew — Thank you for your reply, which is very helpful. My site has indeed
   been hacked — I have discovered various spurious posts. Can you tell me, please,
   if the functions.php is used to store any user settings? If I overwrite the corrupted
   one it with the original, will I lose anything? Thanks again. Best, Keith
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Vantage] Applying additional css to the mobile version of the theme](https://wordpress.org/support/topic/applying-additional-css-to-the-mobile-version-of-the-theme/)
 *  Thread Starter [kitfreeman](https://wordpress.org/support/users/kitfreeman/)
 * (@kitfreeman)
 * [3 years, 3 months ago](https://wordpress.org/support/topic/applying-additional-css-to-the-mobile-version-of-the-theme/#post-16415130)
 * Ps I think I understand now how to media queries to specify different css for
   different screens (and thank you!), but what I really want is to make my additional
   css apply to all screen sizes by default. The problem is that Vantage seems to
   ignore my additional css when rendering my site for smaller screens. Is there
   a way to prevent it doing that, please?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Vantage] Applying additional css to the mobile version of the theme](https://wordpress.org/support/topic/applying-additional-css-to-the-mobile-version-of-the-theme/)
 *  Thread Starter [kitfreeman](https://wordpress.org/support/users/kitfreeman/)
 * (@kitfreeman)
 * [3 years, 3 months ago](https://wordpress.org/support/topic/applying-additional-css-to-the-mobile-version-of-the-theme/#post-16414566)
 * Ps — Do I need to repeat the css wrapped with the media query for mobiles or 
   can I set an earlier media query so that original css applies to all screen sizes?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Vantage] Applying additional css to the mobile version of the theme](https://wordpress.org/support/topic/applying-additional-css-to-the-mobile-version-of-the-theme/)
 *  Thread Starter [kitfreeman](https://wordpress.org/support/users/kitfreeman/)
 * (@kitfreeman)
 * [3 years, 3 months ago](https://wordpress.org/support/topic/applying-additional-css-to-the-mobile-version-of-the-theme/#post-16414523)
 * Ah — I see! I didn’t realize I had an earlier media query. Thank you. I’ll see
   if it works now.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Vantage] Applying additional css to the mobile version of the theme](https://wordpress.org/support/topic/applying-additional-css-to-the-mobile-version-of-the-theme/)
 *  Thread Starter [kitfreeman](https://wordpress.org/support/users/kitfreeman/)
 * (@kitfreeman)
 * [3 years, 3 months ago](https://wordpress.org/support/topic/applying-additional-css-to-the-mobile-version-of-the-theme/#post-16414441)
 * Thanks. I wasn’t clear — sorry. I know I need to wrap the original css in something
   like this:
 * [@media](https://wordpress.org/support/users/media/) screen and (min-width: 480px){
   [
   original css] }
 * It’s the (min-width: 480px) bit I’m having trouble with. I can’t work out the
   right min/mx width settings to use to get it to apply to the mobile version of
   the theme. Can you point in the right direction, please?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Vantage] Applying additional css to the mobile version of the theme](https://wordpress.org/support/topic/applying-additional-css-to-the-mobile-version-of-the-theme/)
 *  Thread Starter [kitfreeman](https://wordpress.org/support/users/kitfreeman/)
 * (@kitfreeman)
 * [3 years, 3 months ago](https://wordpress.org/support/topic/applying-additional-css-to-the-mobile-version-of-the-theme/#post-16414317)
 * Thanks Andrew. That’s helpful, but I’m still struggling to get the wrapping right.
   For example, I’d like to get this css (which works on the desktop version) to
   apply to the mobile phone version:
 * .main-navigation a {
   text-transform: uppercase !important;font-weight: 400 !important;
   margin-left: 0px !important;}
 * Can you tell me, please, which settings should I use in the [@media](https://wordpress.org/support/users/media/)
   screen wrapping?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Vantage] Styling page title and post titles different](https://wordpress.org/support/topic/styling-page-title-and-post-titles-different/)
 *  Thread Starter [kitfreeman](https://wordpress.org/support/users/kitfreeman/)
 * (@kitfreeman)
 * [3 years, 3 months ago](https://wordpress.org/support/topic/styling-page-title-and-post-titles-different/#post-16393177)
 * Many thanks. I have to go now, but I’ll try it later and post an update here.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Vantage] Styling page title and post titles different](https://wordpress.org/support/topic/styling-page-title-and-post-titles-different/)
 *  Thread Starter [kitfreeman](https://wordpress.org/support/users/kitfreeman/)
 * (@kitfreeman)
 * [3 years, 3 months ago](https://wordpress.org/support/topic/styling-page-title-and-post-titles-different/#post-16393165)
 * Ah great! I’ll try these. Many thanks for getting me going again!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Vantage] Styling page title and post titles different](https://wordpress.org/support/topic/styling-page-title-and-post-titles-different/)
 *  Thread Starter [kitfreeman](https://wordpress.org/support/users/kitfreeman/)
 * (@kitfreeman)
 * [3 years, 3 months ago](https://wordpress.org/support/topic/styling-page-title-and-post-titles-different/#post-16393133)
 * I’m using the Vantage theme customizer, which shows a live preview of css changes
   but doesn’t indicate which css codes to use for page elements
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Vantage] Styling page title and post titles different](https://wordpress.org/support/topic/styling-page-title-and-post-titles-different/)
 *  Thread Starter [kitfreeman](https://wordpress.org/support/users/kitfreeman/)
 * (@kitfreeman)
 * [3 years, 3 months ago](https://wordpress.org/support/topic/styling-page-title-and-post-titles-different/#post-16393118)
 * Thanks! That works on the category page titles (now italicized), but not on the
   regular page titles, such as this [https://www.keithfrankish.com/the-theseans/](https://www.keithfrankish.com/the-theseans/)
   Do they need a separate bit of css? (I’ve tried the browser inspector pane, but
   I don’t know how to find what I need in the mass of data there)
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Vantage] Styling page title and post titles different](https://wordpress.org/support/topic/styling-page-title-and-post-titles-different/)
 *  Thread Starter [kitfreeman](https://wordpress.org/support/users/kitfreeman/)
 * (@kitfreeman)
 * [3 years, 3 months ago](https://wordpress.org/support/topic/styling-page-title-and-post-titles-different/#post-16393055)
 * Thanks Andrew. I added this to my css
 * #page-header .page-title {
   font-style: italic !important;}
 * but it doesn’t seem to have had any effect.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Vantage] Show category name as page title on category pages](https://wordpress.org/support/topic/show-category-name-as-page-title-on-category-pages/)
 *  Thread Starter [kitfreeman](https://wordpress.org/support/users/kitfreeman/)
 * (@kitfreeman)
 * [3 years, 3 months ago](https://wordpress.org/support/topic/show-category-name-as-page-title-on-category-pages/#post-16390312)
 * Thanks! That did it.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Vantage] Show category name as page title on category pages](https://wordpress.org/support/topic/show-category-name-as-page-title-on-category-pages/)
 *  Thread Starter [kitfreeman](https://wordpress.org/support/users/kitfreeman/)
 * (@kitfreeman)
 * [3 years, 3 months ago](https://wordpress.org/support/topic/show-category-name-as-page-title-on-category-pages/#post-16390229)
 * Many thanks Andrew! I’m very grateful for your help, and I apologize for abusing
   the free service.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Vantage] Show category name as page title on category pages](https://wordpress.org/support/topic/show-category-name-as-page-title-on-category-pages/)
 *  Thread Starter [kitfreeman](https://wordpress.org/support/users/kitfreeman/)
 * (@kitfreeman)
 * [3 years, 3 months ago](https://wordpress.org/support/topic/show-category-name-as-page-title-on-category-pages/#post-16390172)
 * Ps One other thing, if I may, please: Why does the menu bar on my site extend
   beyond the limit of the boxed layout? (I know I should probably start a new thread
   for this, but since we’re in touch I thought I’d ask it here)

Viewing 15 replies - 1 through 15 (of 52 total)

1 [2](https://wordpress.org/support/users/kitfreeman/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/kitfreeman/replies/page/3/?output_format=md)
[4](https://wordpress.org/support/users/kitfreeman/replies/page/4/?output_format=md)
[→](https://wordpress.org/support/users/kitfreeman/replies/page/2/?output_format=md)