wp-21
Forum Replies Created
-
Forum: Themes and Templates
In reply to: i need to get rid of grey boxes around pictureshi,
firstly you need to create a child theme for all the edits, it will be helpful in future if the parent theme is updated you won’t lost all your changes…
Now as for the grey background you need to edit css line 402 of your style.css which has abackground-colorproperty applied, remove that or comment that and you will be good to go..entry-content img, .comment-content img, .widget img, img.header-image, .author-avatar img, img.wp-post-image { -moz-box-sizing: border-box; background-color: rgba(255, 255, 255, 0.7); border: 0 solid #CCCCCC; border-radius: 5px 5px 5px 5px; box-shadow: 0 1px 4px rgba(255, 255, 255, 0.2); height: auto; max-width: 100%; padding: 4px; }remove the above background color property.
Forum: Themes and Templates
In reply to: [Theme: Twenty Twelve Child] Header adjustment gone wrongExactly what you want to do on your live site which is not happening ryt now..
Forum: Themes and Templates
In reply to: [Theme: Twenty Twelve Child] Header adjustment gone wrongHi, so you want your live site to look just like your testing site..
Forum: Themes and Templates
In reply to: [Adventure] Responsive but won't fit mobile deviceIn a general view i can suggest you to use media queries and inside them use relative units,eliminate any floats.
Hi, you seem to have left out the parent containers which are the key here for your problem.
For decreasing the white-space from top you need to decrease the top padding in the line 22 add padding-top or give it the value you like:
.home .site-header { padding-bottom: 0rem; padding-top: 0; }And for decreasing the space between title and tag line you need to edit line 887 of style.css by reducing the bottom margin :
img.alignleft { margin: 0.857143rem 1.71429rem 0 0; }Of course all these changes should be made to the child theme, which i see you already have created.So its’ good.
Forum: Fixing WordPress
In reply to: Post titles not appearing in twentytwelve (basic questions)Cheers..:)..however make changes to the child theme only not to the theme files directly…
Please close the topic if resolved…
Forum: Themes and Templates
In reply to: About header width and text colorHi,
first you need to do all the edits in the child theme to protect them if you update your parent theme, they won’t get lost..Now
1)for this find out this line of code in your plugin css file#cimy_div_id_0 { border: 0 solid #000000; float: left; height: 288px; margin: 1em auto; width: 1000px; }and change the width set in px to % as
#cimy_div_id_0 { border: 0 solid #000000; float: left; height: 288px; margin: 1em auto; width: 100%; }2)for changing the color of only the main header find this line of code in your style.css at 529 line:
#site-title a { color: #111111; font-size: 30px; font-weight: bold; line-height: 36px; text-decoration: none; }and change the value of color to whatever you want to.
Forum: Themes and Templates
In reply to: [Celestial - Lite] Celestial Curve Banner Not FunctioningCheers Leiroses…:)…
Pls close the topic if resolved…Forum: Themes and Templates
In reply to: Multiple H1 tags per page in Twenty Twelvegreat…pls close this topic if resolved…cheers..:)..
Forum: Themes and Templates
In reply to: [Celestial - Lite] Celestial Curve Banner Not FunctioningYou bet..i had to thrice….:)..
Forum: Themes and Templates
In reply to: [Celestial - Lite] Upper Lower Case TextCheers mate.:)..Yeah changes should be done to child theme…forgot to mention that…
Forum: Themes and Templates
In reply to: [Celestial - Lite] Celestial Curve Banner Not FunctioningWhich image are you referring to..?
I uploaded the required pixels but the image still is off on the right and left
uploaded the pixels….?
meaning of this is unclear…seems so..Please close the topic ..it has been resolved…cheers..:)…
Forum: Fixing WordPress
In reply to: Help removing page titlePlease close the topic if reolved….cheers..:)…
Forum: Fixing WordPress
In reply to: Header ImagePls close the topic if resolved and remember to do all the edits in a child theme.
Cheers..:)..