chits98
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: wp-custom-css not workingDatabase changing newline to “n.”??
Forum: Everything else WordPress
In reply to: where is wordpress data hosted?Your hosting provider should be able to provide you with the cpanel credentials. Once you login to cpanel you’d be able to access the file manager and database.
Forum: Fixing WordPress
In reply to: @media queries for text size in desktop and mobile.@johnatanasoff yes, you need the second closing brace. All css rules for mobile view can be included within the outer braces. Without closing the outer brace any regular css rule that you add below will not be applied properly.
Forum: Fixing WordPress
In reply to: @media queries for text size in desktop and mobile.You would put the css for mobile within a media query. Example
@media screen and (max-width : 400px) { section.homepage-slider h1 { font-size : 20px !important; } }Forum: Fixing WordPress
In reply to: Theme Issue (No one in particular)As catacaustic said, the theme only gives you layout and not content. For this specific theme (Ascent), if you add some test blog posts, you will see that on the home page. For the slider, you will have to go to Appearance | Theme Options and customise the theme appearance (by adding images / video for the slider etc).
Forum: Fixing WordPress
In reply to: Theme Issue (No one in particular)I think many themes have home page separate from blog page. So you may have to configure WordPress to use a static home page.
Forum: Fixing WordPress
In reply to: Can’t change sub menu padding (inheriting menu properties)Try this. Worked for me
#header-links-inner .sub-menu li a { padding-left: 20px !important; }- This reply was modified 8 years, 2 months ago by chits98.