wazza1970
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Problems with texting on Twenty Fourteenyes if you search for these words “word to html wordpress” on you tube warwick is the name
Forum: Themes and Templates
In reply to: Problems with texting on Twenty Fourteenor you might want to watch this video this might help to
[Redacted]Forum: Themes and Templates
In reply to: Problems with texting on Twenty Fourteenhi
i think this is what your looking for if you go and add a new page then its about the 14th button along from the left in visual mode click the button that say kitchen sink then you will have a drop down menue eg: heading 1 and so on and Paragraphs.
Forum: Themes and Templates
In reply to: [Adelle] How to remove the search box in top menu?hi
this should work for you go to Appearance>widgets
and on the left side you will see main sidebar then just drag the search button to the left then its gone off all pagesForum: Themes and Templates
In reply to: [Origin] Centering captionshi
in your css you have the text-align: left
change it to center like this
.wp-caption .wp-caption-text { color: #888888; font-size: 0.846154em; line-height: 1em; margin: 5px 0; text-align: center; }
Forum: Themes and Templates
In reply to: Please help, I need to remove sidebar in woocommercehi
ok try this then in your child theme or custom css file add this code
#lab widgets, body.woocommerce #widgets { display: none; }
this should remove all side bars on the shop and product page
Forum: Themes and Templates
In reply to: Please help, I need to remove sidebar in woocommercehi
just go to pages> all pages > shop > edit
then on the right side you will see Page Attributes >template then in the drop down select full width page(no sidebar)this will get ride of the side bar on this page only.
Forum: Themes and Templates
In reply to: For some reason WP Image logo does not move to the right?hi
you need to make a child theme or use a custom css plugin and add the following code your logo is controlled by the h1 tag this will move to the right now.
#header h1 { float: right; }
hope this help you
Forum: Themes and Templates
In reply to: Twenty Twelve Space between header and nav barhi
what you need to do is change you css file in a child theme or custom css plugin
.main-navigation { margin-top: -2px; }
Forum: Themes and Templates
In reply to: Need help moving up headerhi
add this code to your css file but you should make a child theme first or use a custom css file this will bring your logo up to overlap your yellow bar
`#content-wrapper {
margin-top: -60px ;
}Forum: Themes and Templates
In reply to: [Gommero] Static page with postsare you talking about the post in the right hand sidebar?
Forum: Themes and Templates
In reply to: [Coraline] Logo to replace header text and taglineyou can try this first you have to insert your header img in Appearance > Header then go to you custom css file and try this you will have to look at your code to find the right class just move the img up then your nav done with the bottom and top px
hope this helps you
.entry-content img, .comment-content img, .widget img, img.header-image, .author-avatar img, img.wp-post-image { position: relative; bottom: 180px; } .main-navigation ul.nav-menu, .main-navigation div.nav-menu > ul { position: relative; top: 180px; }
[added code tags – moderator]
Forum: Themes and Templates
In reply to: [Gommero] Static page with postsHi
to set a static front page you go to apperance> customize then set static page to the page you want as your home page
Forum: Themes and Templates
In reply to: [Leaf] Background color will not changesorry mised this
body {
background-color: #c0c0c0 !important ;
}Forum: Themes and Templates
In reply to: [Leaf] Background color will not changehave you tryed editing your custom css file
try this
body {
background-color:#c0c0c0 !important;
}this should override your css