paulwpxp
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Change Span Style ColorCheck on theme setting see if there is any option that user can make change on this. If there is none, and it’s not manually put in via page title, then it must be somewhere in theme’s function.
Meanwhile use this code in Custom CSS plugin to temporary fix it
h1 span[style="color:#fff; font-weight:300;"] { color: black !important; font-weight: bold !important; }Forum: Themes and Templates
In reply to: Featured image too large on mobile – dyad themeFirst please install and activate this plugin
https://wordpress.org/plugins/simple-custom-css/Then navigate to Appearance > Custom CSS
Copy and paste this code below into it and click save.
/*------ reduce featured image size in small screen------*/ @media only screen and (max-width: 680px) { .posts .entry-media {max-width: 320px; margin: 0 auto; } }Forum: Themes and Templates
In reply to: Widget customizationFirst please install and activate this plugin
https://wordpress.org/plugins/simple-custom-css/Then navigate to Appearance > Custom CSS
Copy and paste this code below into it and click save
/*------ Start sidebar styling------*/ @import url(https://fonts.googleapis.com/css?family=Niconne); .widget { background: transparent url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAADCAIAAADqcT3hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAACVJREFUeNpifPfuHcMoIA4w/v//fzQUiAQs79+/Hw0FIgFAgAEAJqEIm4nV/SwAAAAASUVORK5CYII=") repeat-x scroll 0 24px; text-align: center; } .widget-title { background: #fff; display: inline-block; font-family: "Niconne"; font-size: 24px; text-align: center; text-transform: lowercase; color: #f9aa89 !important; margin-bottom: 0; padding: 0 12px; } .widget-title::before, .widget-title::after { display: none; } .widget ul, .widget ol { text-align: initial; } .front-widget-area .widget ul > li, .front-widget-area .widget ol > li, .sidebar-widget-area .widget ul > li, .sidebar-widget-area .widget ol > li { border-bottom: 1px dashed #eee; border-top: 0; font-family: serif; } .widget ul > li, .widget ol > li { padding: 8px 0; } .widget a, .widget a:visited { color: #36ab8a; } .widget a:hover, .widget a:focus { color: rgba(54, 171, 138, 0.7); } /*------ End sidebar styling------*/It will style the sidebar of Sela theme to look like one in Sugar and Spice theme. The only thing that can’t be made via CSS is the different font-family used in the word “Recent” in “Recent Post”, that needs to have extra markup in widget title which I think it’s too much hassle to go into.
Forum: Fixing WordPress
In reply to: Host a second site?See if your web hosting package allows hosting more than 1 site. Most of the shared hosting allows only 1 site but it can be upgraded anytime to host multiple domain. The configuration depends on the web host but it’s mostly the same, we need to login and create a directory for another domain, this directory is where we upload WordPress files, edit the wp-config.php with new database info which we created mostly via phpmyadmin, and then we also need to login to domain hosting to point the domain to hosting server.
How to install WordPress
https://codex.wordpress.org/Installing_WordPressForum: Themes and Templates
In reply to: [Reddle] Title Color on Main columnInstall one of these Custom CSS plugins (pick a simple one that you like)
https://wordpress.org/plugins/search.php?q=custom+cssand then use this code in it
.entry-title a:hover, .entry-title a:focus, .entry-title a:active { color: #b12930; text-decoration: underline; }Forum: Themes and Templates
In reply to: [Sliding Door] CategoriesUse this in your child theme’s style.css
#sidebar2 { display: none; } #content { width: 700px; }The category lists seen in that sidebar area is the default set by theme when there is no widget in that sidebar. Since it’s just a list of category archives we can just display-none it via CSS and extend the width of content.
Forum: Themes and Templates
In reply to: Center sidebar widgets@moxsum , Use image that’s square in proportion, right now the image dimension is 976×1050 which is not square.
Forum: Themes and Templates
In reply to: ColorMag Theme Link Colourhow to change the links in the body of my posts.
Use this code in Custom CSS, change color to your own.
.entry-content a { color: #ff0000; }Custom CSS plugin
https://wordpress.org/plugins/search.php?q=custom+cssForum: Themes and Templates
In reply to: [Sela] How to change entry-title on front page@paulwpxp yes, that code fixed the issue, but dev. should do better job on this one.
Please mark this thread as resolved.
This issue is a special customization request, not theme bugs or anything relates to coding standard, so to be fair it’s unrealistic to require developer of this theme to spend time on this issue.
Forum: Themes and Templates
In reply to: media images will not insertPlease follow the steps here
https://codex.wordpress.org/Inserting_Images_into_Posts_and_PagesIf it used to work, you’ve done it before, and then suddenly it stopped working properly, there might be some plugin conflict. Try deactivate some plugin that you activated recently.
Forum: Themes and Templates
In reply to: [Olsen Light] Olsen Logo in the FooterGo to Appearance > Customize and put in Footer Logo
Go to Appearance > Menus to setup a menu and checkbox footer location
Forum: Themes and Templates
In reply to: Widget customizationSo it’s not the the widgets from Spice and Sugar theme, it’s the sidebar styling, am I correct?
Forum: Themes and Templates
In reply to: Widget customizationPlease avoid doing anything to theme file, keep theme file untouched.
For About Widget: try one of these plugins
https://wordpress.org/plugins/image-widget/screenshots/
https://wordpress.org/plugins/simple-image-widget/screenshots/For Social Widget: try one of these plugins
https://wordpress.org/plugins/lightweight-social-icons/screenshots/
https://wordpress.org/plugins/ultimate-social-media-icons/screenshots/For Archive Widget: use WP’s native Menu and Use it in WP’s native Custom Menu Widget, or use a plugin
https://codex.wordpress.org/WordPress_Menu_User_Guide#Creating_Multi-level_Menus
https://wordpress.org/plugins/search.php?q=archive+widgetFor Contact Widget: use WP’s standard Text Widget and put in the contact info manually, or use a plugin
https://wordpress.org/plugins/search.php?q=contact+widgetForum: Themes and Templates
In reply to: Margin problems in IE onlyUse this code in Custom CSS plugin (or via theme option if provided) will fix the problem in IE
.fl-module-photo { overflow: hidden !important; }Forum: Fixing WordPress
In reply to: Dyad Theme – Category childYou can take full control of the menu, the info on how to is here
https://codex.wordpress.org/WordPress_Menu_User_Guide#Creating_Multi-level_Menus