batharoy
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Best practice to add vertical space?CSS margins is used to create space between elements.
Forum: Themes and Templates
In reply to: Unwanted extra menu appearing on every pageIt looks like you have the pages widget set in the footer widget area. You can change that in Appearance > Widgets.
Forum: Themes and Templates
In reply to: [Adelle] Remove Zigzag lines in sidebarOh, you were so close @petitebeautyblogger. Prepend the class with side.
.side-widget { background-image: url("IMAGE URL HERE") no-repeat bottom center; }Forum: Themes and Templates
In reply to: [Theme: Twenty Fourteen with Child Theme] Delete FooterWhat code did you try to edit out?
Forum: Themes and Templates
In reply to: [Virtue] CSS for Mobile Menu Font Color.kad-nav-inner .kad-mnav, .kad-mobile-nav .kad-nav-inner li a, .nav-trigger-case { color: #a84579; }Forum: Themes and Templates
In reply to: Twentytwelve right margin issuesBy putting the code in the selector above it will only take effect if the screen is 960px or larger in width.
So adding your width attribute like the code below will limit the width to 70% if the screen is 960px or more, otherwise it reverts to the default settings.@media screen and (min-width: 960px) { .entry-content { max-width: 70%; } }Forum: Themes and Templates
In reply to: Twentytwelve right margin issuesTry adding your css code in here.
@media screen and (min-width: 960px) { YOUR CODE HERE }Forum: Themes and Templates
In reply to: [Displace] Theme does not migrate to my dashboardThats not actually part of the theme but I was able to replicate it with the code below.
Instal a plug-in like Simple Custom CSS and then enter the code.#content { background-image: url(http://upload.wikimedia.org/wikipedia/commons/0/01/Polish_Wikinews_header_image.png); background-repeat: no-repeat; background-size: 100%; background-color: white; background-position: 0 30px; } article { padding-top: 30%; }You will need to change the URL to your image and adjust the padding-top percentage to your liking.
The color code should have either 3 or 6 f’s and make sure you refresh your page.
Forum: Themes and Templates
In reply to: [WP StrapHero] How to Remove/Alter Header/Footer Image?To remove the pattern:
.jumbotron:after { background: url(); } .footer-jumbotron:after { background: url(); }To change the color:
.jumbotron { background: #0088cc; } .footer-jumbotron { background: #0088cc; }To remove header portion:
.jumbotron { display:none; }}
Forum: Themes and Templates
In reply to: Increase the width of the content area?If your not using a child theme install a plug-in like Simple Custom CSS and add the code below. Adjust the percentage to your liking.
.entry-header, .entry-content, .entry-summary, .entry-meta { max-width: 70%; }Forum: Themes and Templates
In reply to: [Path] Please help! Horizontal scrolling and footer problem#footer .wrap { margin: 0 0 0 auto; }Forum: Themes and Templates
In reply to: [Tempera] Add 2nd image to left side of headerInstal a plug-in like Simple Custom CSS then add the following code.
Change the url to your image.#header-container { background-image: url(http://s.w.org/about/images/logos/wordpress-logo-32-blue.png); background-position: 10% 10%; background-repeat: no-repeat; }Forum: Themes and Templates
In reply to: [DW Minion] How to change Post Title Color and Hyperlink Color?Install a plug-in like Simple Custom CSS then add this code for the titles and change the colors to your liking.
.entry-title a { color: #0000ff; } .entry-title a:hover { text-decoration: none; color: #ff0000; }Forum: Themes and Templates
In reply to: [Catch Box] Menu bar and drop down menu colors#branding ul.menu ul a { background: #0000E0; }