windkin
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Klasik] How do i modify the witdth of the sidebarI have this in my stylesheet to get the desired effect on http://www.trykd.dk
.row .sidebarcol { width: 20%; }
.row .contentcol { width: 80%; }If it does not help add this instead
.row .sidebarcol { width: 20% !important; }
.row .contentcol { width: 80% !important; }You should be aware of when using Klasik theme that i have found out that many CSS rules gets overwritten in child style sheets. So when you add a CSS rule and you are relatively sure that you have the right class or id, then add the !important to the css rule wich will prevent any child style sheet from overwriting the newly defined css rule.
Only use !important when you absolutely need to because there is a chance it could mess up classes on other pages.Forum: Installing WordPress
In reply to: How to install a child theme?I dont undestand that language but subject says it all…
I think you will find what you are loooking for on this link
https://www.youtube.com/results?search_query=how+to+install+a+child+theme+in+wordpressForum: Themes and Templates
In reply to: [Stork] Add sidebarSeems like it does not support a widget sidebar. However if you know html and a bit of php you should be able to code in the support by yourself.
Its to complex for me to explain here thoughForum: Themes and Templates
In reply to: [Stork] Add sidebarThat depends on the theme. Some can some Cant. Wich them are we talking about ?
Forum: Installing WordPress
In reply to: Cannot login to WP using adress method.Its completely normal. By default they are missing.
What they do is that they specify the path to your wordpress installation. Some people need to move the their site from developer servers to live envioments and the 2 lines will help wordpress locate its own files in a new envioment.
I was thinking thay your installation might have problems finding its own files the right place. APPENDING the 2 lines to the wp-config file will specify exatly where the installation is locatedForum: Themes and Templates
In reply to: [Klasik] Everything is aligned to rightfound a solution
Check this
Youtube tutorials
Maybe that can helpForum: Installing WordPress
In reply to: Cannot login to WP using adress method.Yes. You will find these folders in the same folder after a new install. If your install is old or has aditional content there might be more folders, but these 4 will allways be in the root dir.
wc-logs <dir>
wp-admin <dir>
wp-content <dir>
wp-includes <dir>Forum: Themes and Templates
In reply to: [Klasik] How do i modify the witdth of the sidebardobble post see link
Forum: Themes and Templates
In reply to: [Klasik] How do i modify the witdth of the sidebardobble post see link
Forum: Themes and Templates
In reply to: [Klasik] How do i modify the witdth of the sidebarThanks
Forum: Installing WordPress
In reply to: Cannot login to WP using adress method.Open an FTP client and download the file wp-config.php from the root of your wordpress installation
At the buttom appen these 2 lines, replacing yourdomain with the correct link to your installation. That might help.define( ‘WP_SITEURL’, ‘http://yourdomain.com’ );
define( ‘WP_HOME’, ‘http://yourdomain.com’ );Forum: Themes and Templates
In reply to: Add a logo from the admin panelThis is usualy controled by the theme in the Appearence menu. Without knowing wich theme you are running it would be hard to guess.
If you have a “Appearence -> Customice” menu i would say check that area